0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-18 10:38:21 +02:00

jenkins-*.sh: set -x

Also move the options from the shebang line to the body of the script, so that
they take effect even if somebody explicitly runs "bash jenkins.sh"
This commit is contained in:
Richard van der Hoff 2016-03-03 11:38:36 +00:00
parent 0b3083c75b
commit 62d808becc
4 changed files with 12 additions and 4 deletions

View file

@ -1,4 +1,6 @@
#!/bin/bash -eu
#!/bin/bash
set -eux
: ${WORKSPACE:="$(pwd)"}

View file

@ -1,4 +1,6 @@
#!/bin/bash -eu
#!/bin/bash
set -eux
: ${WORKSPACE:="$(pwd)"}

View file

@ -1,4 +1,6 @@
#!/bin/bash -eu
#!/bin/bash
set -eux
: ${WORKSPACE:="$(pwd)"}

View file

@ -1,4 +1,6 @@
#!/bin/bash -eu
#!/bin/bash
set -eux
: ${WORKSPACE:="$(pwd)"}