Skip to content

Commit

Permalink
[JENKINS-38134] Enabled pipefail in modified scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
armfergom committed Oct 25, 2016
1 parent 4563dc4 commit b686593
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion msi/publish.sh
@@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -ex -o pipefail
sha256sum ${MSI} | sed 's, .*/, ,' > ${MSI_SHASUM}
cat ${MSI_SHASUM}
rsync -avz -e "ssh $SSH_OPTS" "$MSI" "$MSI_SHASUM" "$PKGSERVER:$MSIDIR/"
2 changes: 1 addition & 1 deletion osx/publish.sh
@@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -ex -o pipefail
sha256sum ${OSX} | sed 's, .*/, ,' > ${OSX_SHASUM}
cat ${OSX_SHASUM}
rsync -avz -e "ssh $SSH_OPTS" "${OSX}" "${OSX_SHASUM}" "$PKGSERVER:$OSXDIR/"

0 comments on commit b686593

Please sign in to comment.