aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-28 21:07:04 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-28 21:07:04 +0000
commit54c9ba7f22dd983ac4e8b42299deeaee91f852f7 (patch)
tree7ceb28b9816d032f489e7ea9b8948b8d5985e80b /scripts/auto-build
parent21a4203d92eb7face740ef04f2ade83e82aee3ac (diff)
fix glitch in rsync_file() that prevented it from finding the actual files
svn path=/trunk/; revision=16320
Diffstat (limited to 'scripts/auto-build')
-rwxr-xr-xscripts/auto-build/pd-extended-source-tarball.sh2
1 files changed, 1 insertions, 1 deletions
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
}