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
$meta_functionality_name
Some components define a temp dir using something like the following:
TMPDIR=$(mktemp -d "$meta_temp_dir/$meta_functionality_name-XXXXXX")
However, $meta_functionality_name is deprecated in Viash v0.9+.
The src/untar component has it in both the script.sh and test.sh.
src/untar
script.sh
test.sh
Please note: This only shows up as an error when using set -u. It's silently set to "" otherwise.
set -u
""
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some components define a temp dir using something like the following:
TMPDIR=$(mktemp -d "$meta_temp_dir/$meta_functionality_name-XXXXXX")
However,
$meta_functionality_name
is deprecated in Viash v0.9+.The
src/untar
component has it in both thescript.sh
andtest.sh
.Please note: This only shows up as an error when using
set -u
. It's silently set to""
otherwise.The text was updated successfully, but these errors were encountered: