diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-09-30 08:26:59 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-09-30 08:26:59 +0000 |
commit | 5c29d9a8ff3db169a7b65ac6ccb619a984697533 (patch) | |
tree | c8227bc7b70e8ecea1306a12e285283c877b3ab1 /scripts/auto-build/prep-auto-build-upload | |
parent | 7041544052f895187f2371d0c143911aefa69a6e (diff) |
replaced `` syntax with $();
added a 1-before-last line to the logfile indicating the uploaded package
(LATER use this to rename the logfile to something more meaningful;
FIRST wait whether everything still works...)
svn path=/trunk/; revision=10317
Diffstat (limited to 'scripts/auto-build/prep-auto-build-upload')
-rwxr-xr-x | scripts/auto-build/prep-auto-build-upload | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/auto-build/prep-auto-build-upload b/scripts/auto-build/prep-auto-build-upload index fc086428..8cbc4b67 100755 --- a/scripts/auto-build/prep-auto-build-upload +++ b/scripts/auto-build/prep-auto-build-upload @@ -2,11 +2,11 @@ # prepare a directory per date for the auto-builders to upload to -HOSTNAME=`hostname` -SYSTEM=`uname -s` -DATE=`date +%Y-%m-%d` -TIME=`date +%H.%M.%S` -SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'` +HOSTNAME=$(hostname) +SYSTEM=$(uname -s) +DATE=$(date +%Y-%m-%d) +TIME=$(date +%H.%M.%S) +SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g') LOGFILE=/home/pd/logs/${DATE}_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt #BUILD_ROOT="/var/www/auto-build" |