We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I run make_temp_path TMP_DIR in a just target, this line causes a trap when run via just.
make_temp_path TMP_DIR
just
vsi_common/linux/signal_tools.bsh
Line 75 in aec3ddc
Adding set -xv right before that line produces this
set -xv
trap '' "${2}"; trap -p "${2}" | { read x ; echo "${x##* }"; } ++ trap '' EXIT ++ trap -p EXIT ++ read x print_error "${BASH_SOURCE[0]}" "${LINENO}" +++ print_error /Users/sgrichar/terra/external/vsi_common/linux/signal_tools.bsh 76 [snip]
The fix (66291fe) is simple, although why that fixes the problem is not clear:
- last_info="$(trap '' "${2}"; trap -p "${2}" | { read x ; echo "${x##* }"; })" + last_info="$((trap '' "${2}"; trap -p "${2}") | { read x ; echo "${x##* }"; })"
The text was updated successfully, but these errors were encountered:
bugfix: this was causing a trap in macOS; see issue #242
c184da4
1b78c65
66291fe
No branches or pull requests
If I run
make_temp_path TMP_DIR
in a just target, this line causes a trap when run viajust
.vsi_common/linux/signal_tools.bsh
Line 75 in aec3ddc
Adding
set -xv
right before that line produces thisThe fix (66291fe) is simple, although why that fixes the problem is not clear:
The text was updated successfully, but these errors were encountered: