mirror of https://github.com/zulip/zulip.git
release: Don't remove OUTPUT_DIR on exit.
This ends up deleting your local copy of the release tarball, which can be annoying if you need to upload it manually to the GitHub releases page.
This commit is contained in:
parent
c07212ad60
commit
b8c362c991
|
@ -105,7 +105,6 @@ remote="$(git config zulip.zulipRemote)" || remote=upstream
|
|||
git push "$remote" "$branch:$branch"
|
||||
|
||||
OUTPUT_DIR=$(mktemp -d)
|
||||
trap 'rm -r "$OUTPUT_DIR"' EXIT
|
||||
export OUTPUT_DIR
|
||||
|
||||
./tools/build-release-tarball "$version"
|
||||
|
|
Loading…
Reference in New Issue