mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-28 19:16:38 +02:00
20 lines
423 B
Bash
Executable File
20 lines
423 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Auto-update script for Unreal3.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
|
|
CURRENT_VERSION="Unreal3.1-Silverheart"
|
|
clear
|
|
cat .UPDATE
|
|
cd src
|
|
rm update.sh
|
|
wget http://unreal.tspre.org/update.sh
|
|
chmod +x update.sh
|
|
export CURRENT_VERSION
|
|
./update.sh
|
|
exit 1
|