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
autoload_functions is commonly used as follows:
## list of functions to auto-load function_to_autoload=" banner greet " autoload_functions "$function_to_autoload"
and it's fine. Spawn understands it.
However, when list of functions is listed this way:
function_to_autoload="banner greet"
it breaks.
Issue is the line function: core/lib/getdeps_indirect.bash.inc
core/lib/getdeps_indirect.bash.inc
echo $($CAT_BIN $file | $SED_BIN -n -e "/$deps_varname\=/,/\"/ p" | $GREP_BIN -v $deps_varname | $GREP_BIN -v '"')
The text was updated successfully, but these errors were encountered:
Intermediate fix for #38 on func_list and cover most cases.
cc6729d
Keeping this ticket open to refactor the initial fix. Hint: check the TODO list in initial fix.
Sorry, something went wrong.
No branches or pull requests
autoload_functions is commonly used as follows:
and it's fine. Spawn understands it.
However, when list of functions is listed this way:
it breaks.
Issue is the line function:
core/lib/getdeps_indirect.bash.inc
The text was updated successfully, but these errors were encountered: