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/pure-data-rsync-checkout | |
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/pure-data-rsync-checkout')
-rwxr-xr-x | scripts/auto-build/pure-data-rsync-checkout | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/auto-build/pure-data-rsync-checkout b/scripts/auto-build/pure-data-rsync-checkout index 7d15adec..b34c44b3 100755 --- a/scripts/auto-build/pure-data-rsync-checkout +++ b/scripts/auto-build/pure-data-rsync-checkout @@ -2,11 +2,11 @@ # update from the local CVS repository # the source dir where this script is -SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'` +SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|') . $SCRIPT_DIR/auto-build-common # the name of this script -SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'` +SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g') LOGFILE=/home/pd/logs/${DATE}_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt update_distro () @@ -21,7 +21,7 @@ update_distro () touch $LOGFILE for dir in /home/pd/rsync/*; do - dirname=`echo $dir | sed 's|.*/\(.*\)|\1|'` + dirname=$(echo $dir | sed 's|.*/\(.*\)|\1|') test -e $dir/scripts/update-developer-layout.sh && \ update_distro $dirname done |