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
mktmp_auto
ccdb/src/ccjs/lib/mktmp_auto.bash
Line 52 in 99841a6
You aren't going to modify the global tmpfile/dirs lists if foo="$( mktmp_auto; )"; is invoked.
foo="$( mktmp_auto; )";
You need to use a "result" variable to stash output in:
mktmp_auto() { ... MKTMP_OUTPUT="$_file"; } mktmp_auto; foo="$MKTMP_OUTPUT";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ccdb/src/ccjs/lib/mktmp_auto.bash
Line 52 in 99841a6
You aren't going to modify the global tmpfile/dirs lists if
foo="$( mktmp_auto; )";
is invoked.You need to use a "result" variable to stash output in:
The text was updated successfully, but these errors were encountered: