Update of /cvsroot/gaim/web/scripts
In directory usw-pr-cvs1:/tmp/cvs-serv3463/scripts
Modified Files:
updatesite.sh
Log Message:
this will let me specify my sf username on the command line.
Index: updatesite.sh
===================================================================
RCS file: /cvsroot/gaim/web/scripts/updatesite.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- updatesite.sh 26 Sep 2002 21:12:30 -0000 1.1
+++ updatesite.sh 2 Oct 2002 07:30:57 -0000 1.2
@@ -1,5 +1,9 @@
#!/bin/sh
-SFUSER=$USER
+if test "x$1" != x; then
+ SFUSER=$1
+else
+ SFUSER=$USER
+fi
/usr/bin/ssh $SF...@sh... 'cd /home/groups/g/ga/gaim && cvs -z3 update -Pd'
|