summaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2008-12-03 12:27:26 -0700
committerIra Rice <irarice@gmail.com>2008-12-03 12:27:26 -0700
commit414afae670d09e34a4b5c0528c9ca6c3abb03124 (patch)
tree899436d11a4eb99a7de3a7e03483216322cbfefc /update.sh
parentff89a2184651b676f0e835ec7991a100361465d1 (diff)
downloadMana-414afae670d09e34a4b5c0528c9ca6c3abb03124.tar.gz
Mana-414afae670d09e34a4b5c0528c9ca6c3abb03124.tar.bz2
Mana-414afae670d09e34a4b5c0528c9ca6c3abb03124.tar.xz
Mana-414afae670d09e34a4b5c0528c9ca6c3abb03124.zip
Updated the update shell script to pull from git, not svn. Thanks
Softlace for pointing this out. Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/update.sh b/update.sh
index 34c64969..28dfeca1 100755
--- a/update.sh
+++ b/update.sh
@@ -1,15 +1,15 @@
#!/bin/bash
-#automated script to update aethyra from SVN
+#automated script to update aethyra from git
#author=Blame <blame@aethyra.com>
-#last modified 2008-09-21 Blame
+#last modified 2008-12-03 Tametomo
file=~/src/aethyra
file1=~/src
# test for the aethyra client folder
if [ -e $file ]; then
#change to the aethyra directory
cd $file;
- #issue the svn update command
- svn up;
+ #issue the git update command
+ git pull;
#issue the autobuild command
./autobuild.sh;
echo "Aethyra has been updated"
@@ -19,8 +19,8 @@ else
mkdir $file1
#change to directory /home/user-name/src
cd $file1
- #execute the svn command to download the client files
- svn co svn://www.aethyra.org/client/trunk aethyra
+ #execute the git command to download the client files
+ git clone git://gitorious.org/tmw/aethyra.git
#issue the auto build script to compile the client
./autobuild
echo "congratulations on installing aethyra enjoy"