diff options
-rwxr-xr-x | functions/lockfile.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/lockfile.sh b/functions/lockfile.sh index 185030842..189d0c231 100755 --- a/functions/lockfile.sh +++ b/functions/lockfile.sh @@ -30,7 +30,7 @@ Create_lockfile () mkdir -p "${DIRECTORY}" # Creating lock trap - trap "test -f ${FILE} && rm -f ${FILE}; exit 0" 0 1 2 3 9 15 + trap 'ret=${?}; '"rm -f \"${FILE}\";"' exit ${ret}' EXIT # Creating lock file touch "${FILE}" |