From 54c9ba7f22dd983ac4e8b42299deeaee91f852f7 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 28 Sep 2012 21:07:04 +0000 Subject: fix glitch in rsync_file() that prevented it from finding the actual files svn path=/trunk/; revision=16320 --- scripts/auto-build/pd-extended-source-tarball.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/auto-build/pd-extended-source-tarball.sh b/scripts/auto-build/pd-extended-source-tarball.sh index e69d14f2..8bb60c64 100755 --- a/scripts/auto-build/pd-extended-source-tarball.sh +++ b/scripts/auto-build/pd-extended-source-tarball.sh @@ -11,7 +11,7 @@ rsync_file() file=$1 file_upload=$(basename $file) # if the rsync fails, ignore and carry on - (rsync -a ${file}.md5 rsync://${RSYNC_SERVER}/upload/${DATE}/${file_upload}.md5 && \ + (rsync -a ${file} rsync://${RSYNC_SERVER}/upload/${DATE}/${file_upload} && \ echo "successfully uploaded: ${file_upload}") || \ true } -- cgit v1.2.1