9781d1b
#!/bin/bash
9781d1b
9781d1b
set -e
9781d1b
9781d1b
if [ ! -f $HOME/.q3a/baseq3/pak8.pk3 ]; then
9781d1b
  set +e
9781d1b
  /usr/share/autodl/AutoDL.py /usr/share/quake3/quake3-update.autodlrc
9781d1b
  STATUS=$?
9781d1b
  set -e
9781d1b
  # status 2 means download was ok, but the user choice not to start the game
9781d1b
  if [ "$STATUS" = "0" -o "$STATUS" = "2" ]; then
9781d1b
    cd ~/.q3a
9781d1b
    sh linuxq3apoint-1.32b-3.x86.run  --tar xf -C . --exclude setup.*
9781d1b
    rm linuxq3apoint-1.32b-3.x86.run
9781d1b
  fi
9781d1b
else
9781d1b
  echo "You already have quake 3 1.32b update!" ;
9781d1b
fi