#!/bin/sh
#
# Auto-update script for 3.1 and higher
# (C) Carsten V. Munk 2000
#
# This script may not be modified without consent of the author,
# or included in any package without permission from the author.
#
# NO WARRANTY IS INCLUDED

# TEMP added by Syzop till the new updater thing is finished.
echo "Please see doc/forks32docs.html section 1.2 (\"Notes on upgrading between 3.2 versions\")."
exit 1
# ORIGINAL CODE FOLLOWS:

CURRENT_VERSION="Forks3.3"
WHATYAWANT="wget"
clear
cat .UPDATE
cd src
rm -f update.sh

read $WHATYAWANT

if [ "$WHATYAWANT" == "wget" ] ; then
TMP=`which wget`
TMP2=`echo $TMP | cut -c1`

echo "Forks has not made an update.sh setup yet..."

chmod +x update.sh
export CURRENT_VERSION
./update.sh $*
exit 1
