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
@lib
The text was updated successfully, but these errors were encountered:
Add missing tests for @lib #111
510fabb
Actually this reveals a bug in @goal @glob + @lib combination. The glob-exported variables are not available in lib:
@goal @glob
@lib echo "Unnamed lib ::: $ITEM :: $INDEX :: $TOTAL" @goal @glob 11_goal_glob*.txt @use_lib echo "@glob ::: $ITEM :: $INDEX :: $TOTAL" @goal glob_goal_name @glob 11_goal_glob*.txt @use_lib lib_name echo "glob_goal_name ::: $ITEM :: $INDEX :: $TOTAL" @lib lib_name echo "lib lib_name ::: $ITEM :: $INDEX :: $TOTAL"
Outputs:
$ ./makesure -f tests/11_goal_glob_lib.sh '11_goal_glob*.txt' goal '11_goal_glob_1.txt' ... Unnamed lib ::: :: :: @glob ::: 11_goal_glob_1.txt :: 0 :: 4 goal '11_goal_glob_2.txt' ... Unnamed lib ::: :: :: @glob ::: 11_goal_glob_2.txt :: 1 :: 4 goal '11_goal_glob_3.txt' ... Unnamed lib ::: :: :: @glob ::: 11_goal_glob_3.txt :: 2 :: 4 goal '11_goal_glob_10.txt' ... Unnamed lib ::: :: :: @glob ::: 11_goal_glob_10.txt :: 3 :: 4 goal '11_goal_glob*.txt' [empty].
Sorry, something went wrong.
Add missing tests for @lib #111 and fix the problem with `@goal @gl…
8463c22
…ob` + `@lib`
xonixx
No branches or pull requests
The text was updated successfully, but these errors were encountered: