1
1

nightly-tarball scripts: fix quoting

Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
Этот коммит содержится в:
Jeff Squyres 2017-02-11 22:40:10 +00:00
родитель b385ac4f09
Коммит 2d4fc45429
3 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -148,7 +148,7 @@ for branch in $branches; do
# tell the web server to cleanup old nightly tarballs
run_command ssh -p 2222 \
$output_ssh_target \
"git/ompi/contrib/build-server/remove-old.pl 7 public_html/software/hwloc/nightly/$branch"
\"git/ompi/contrib/build-server/remove-old.pl 7 public_html/software/hwloc/nightly/$branch\"
# upload the new ones
run_command scp -P 2222 \
$outputroot/$branch/hwloc-$latest_snapshot.tar.* \
@ -159,10 +159,10 @@ for branch in $branches; do
# direct the web server to regenerate the checksums
run_command ssh -p 2222 \
$output_ssh_target \
"cd public_html/software/hwloc/nightly/$branch && md5sum hwloc* > md5sums.txt"
\"cd public_html/software/hwloc/nightly/$branch \&\& md5sum hwloc\* \> md5sums.txt\"
run_command ssh -p 2222 \
$output_ssh_target \
"cd public_html/software/hwloc/nightly/$branch && sha1sum hwloc* > sha1sums.txt"
\"cd public_html/software/hwloc/nightly/$branch \&\& sha1sum hwloc\* \> sha1sums.txt\"
fi
# Failed builds are not removed. But if a human forgets to come

Просмотреть файл

@ -151,7 +151,7 @@ for branch in $branches; do
# tell the web server to cleanup old nightly tarballs
run_command ssh -p 2222 \
$output_ssh_target \
"git/ompi/contrib/build-server/remove-old.pl 7 public_html/nightly/$branch"
\"git/ompi/contrib/build-server/remove-old.pl 7 public_html/nightly/$branch\"
# upload the new ones
run_command scp -P 2222 \
$outputroot/$branch/openmpi-$latest_snapshot.tar.* \
@ -162,10 +162,10 @@ for branch in $branches; do
# direct the web server to regenerate the checksums
run_command ssh -p 2222 \
$output_ssh_target \
"cd public_html/nightly/$branch && md5sum openmpi* > md5sums.txt"
\"cd public_html/nightly/$branch \&\& md5sum openmpi\* \> md5sums.txt\"
run_command ssh -p 2222 \
$output_ssh_target \
"cd public_html/nightly/$branch && sha1sum openmpi* > sha1sums.txt"
\"cd public_html/nightly/$branch \&\& sha1sum openmpi\* \> sha1sums.txt\"
fi
# Failed builds are not removed. But if a human forgets to come

Просмотреть файл

@ -157,7 +157,7 @@ for branch in $branches; do
# tell the web server to cleanup old nightly tarballs
run_command ssh -p 2222 \
$output_ssh_target \
"git/ompi/contrib/build-server/remove-old.pl 7 public_html/software/pmix/nightly/$branch"
\"git/ompi/contrib/build-server/remove-old.pl 7 public_html/software/pmix/nightly/$branch\"
# upload the new ones
run_command scp -P 2222 \
$outputroot/$branch/pmix-$latest_snapshot.tar.* \
@ -168,10 +168,10 @@ for branch in $branches; do
# direct the web server to regenerate the checksums
run_command ssh -p 2222 \
$output_ssh_target \
"cd public_html/software/pmix/nightly/$branch && md5sum pmix* > md5sums.txt"
\"cd public_html/software/pmix/nightly/$branch \&\& md5sum pmix\* \> md5sums.txt\"
run_command ssh -p 2222 \
$output_ssh_target \
"cd public_html/software/pmix/nightly/$branch && sha1sum pmix* > sha1sums.txt"
\"cd public_html/software/pmix/nightly/$branch \&\& sha1sum pmix\* \> sha1sums.txt\"
fi
# Failed builds are not removed. But if a human forgets to come