0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 11:07:57 +01:00

scripts/latest.sh: should be TERM here, not EXIT

This commit is contained in:
Felicity Tarnell 2015-05-01 13:58:40 +01:00
parent 20e159d1f8
commit b0b577e963

View File

@ -95,14 +95,14 @@ elif [ "$1" = "edit" -o "$1" = "vi" ]; then
printf >&2 -- '%s: cannot create temporary file\n' "$0"
exit 1
fi
trap 'rm -f "${LTMP}"' 0 EXIT INT
trap 'rm -f "${LTMP}"' 0 TERM INT
LTMP2=$(mktemp "${TMPDIR:-/tmp}/latest.XXXXXX")
if [ "$?" -ne 0 ]; then
printf >&2 -- '%s: cannot create temporary file\n' "$0"
exit 1
fi
trap 'rm -f "${LTMP2}"' 0 EXIT INT
trap 'rm -f "${LTMP2}"' 0 TERM INT
if ! _get "${LTMP}"; then
exit 1