diff options
-rwxr-xr-x | bin/common-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index 30094264..7664337b 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -12,7 +12,7 @@ common_init() { # check whether this script has been started from /tmp already if [ "${0:0:5}" != "/tmp/" ] ; then # mktemp some place for us... - TTT=$(mktemp --tmpdir=/tmp) + TTT=$(mktemp --tmpdir=/tmp jenkins-script-XXXXXXXX) # prepare cleanup trap common_cleanup INT TERM EXIT # cp $0 to /tmp and run it from there |