diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-11-17 19:45:54 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-11-17 19:45:54 +0000 |
commit | 6d43e695cc7e158e9ea2d274bcc1ae2e85622ef2 (patch) | |
tree | 6ed10ec6e7df8829d6cfcb5f004eed89567b6f56 /scripts/auto-build/auto-build-common | |
parent | 46331a765e751d7ccc6ad515f618faa6d92a8fd3 (diff) |
update rsync uploading for new apt.puredata.info setup
svn path=/trunk/; revision=16559
Diffstat (limited to 'scripts/auto-build/auto-build-common')
-rw-r--r-- | scripts/auto-build/auto-build-common | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/auto-build/auto-build-common b/scripts/auto-build/auto-build-common index f0d75424..8280035b 100644 --- a/scripts/auto-build/auto-build-common +++ b/scripts/auto-build/auto-build-common @@ -65,6 +65,15 @@ print_ip_address() fi } +rsync_file() +{ + file=$1 + subdir_file=$2 + # if the rsync fails, ignore and carry on + (rsync -a --chmod=a+r -e ssh ${file} ${RSYNC_SERVER}:/home/apt/www/auto-build/$subdir_file && \ + echo "successfully uploaded: $(basename $file)") || \ + true +} rsync_distro() { |