diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-10-18 15:42:12 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-10-18 15:42:12 +0000 |
commit | f4e90a9605d3331e0b1cea76f25d01ed74fbcaf4 (patch) | |
tree | 5b7cc67f272eb9dcc39cad5c1eb7ae1cb32fd46a /scripts/auto-build/pure-data-cvs-rsync-checkout | |
parent | 848d5198beabf8447a45bd7ab202251350e4a0cb (diff) |
switched to a common file for common variables; downcased hostname and uname
svn path=/trunk/; revision=6133
Diffstat (limited to 'scripts/auto-build/pure-data-cvs-rsync-checkout')
-rwxr-xr-x | scripts/auto-build/pure-data-cvs-rsync-checkout | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/auto-build/pure-data-cvs-rsync-checkout b/scripts/auto-build/pure-data-cvs-rsync-checkout index de08ed97..43ece035 100755 --- a/scripts/auto-build/pure-data-cvs-rsync-checkout +++ b/scripts/auto-build/pure-data-cvs-rsync-checkout @@ -1,8 +1,11 @@ #!/bin/sh +# update from the local CVS repository -SYSTEM=`uname -s` -DATE=`date +%Y-%m-%d` -TIME=`date +%H.%M.%S` +# the source dir where this script is +SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'` +. $SCRIPT_DIR/auto-build-common + +# the name of this script SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'` LOGFILE=/home/pd/logs/${DATE}_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt |