diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-28 21:07:04 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-28 21:07:04 +0000 |
commit | 54c9ba7f22dd983ac4e8b42299deeaee91f852f7 (patch) | |
tree | 7ceb28b9816d032f489e7ea9b8948b8d5985e80b /scripts | |
parent | 21a4203d92eb7face740ef04f2ade83e82aee3ac (diff) |
fix glitch in rsync_file() that prevented it from finding the actual files
svn path=/trunk/; revision=16320
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/pd-extended-source-tarball.sh | 2 |
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 } |