Resolves #40 - don't change directory to ${PWD} on EXIT

This commit is contained in:
Scott McLeod 2020-01-14 15:48:14 -05:00
parent 2f8d3a33ee
commit a0fd84e721
No known key found for this signature in database
GPG Key ID: 9C5566AB07C8E593

View File

@ -30,7 +30,7 @@ case $(uname -m) in
x86_64) ARCHITECTURE="x64" ;;
esac
trap "cd ${PWD}; rm -rf ${TEMP_DIR}" EXIT
trap "rm -rf ${TEMP_DIR}" EXIT
function check-jq() {