We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
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
Again, following babashka book and playing with tasks, noticed a very weird thing:
> tree .github .github └── workflows └── main.yaml
{:tasks {clean (shell "rm -rf .github/workflows/*") clean2 (shell "rm -rf .github/workflows")}}
rm -rf .github/workflows/*
bb clean
bb clean2
Maybe shell has issue with wildcard? Related babashka/process#103. An echo maybe helpful to figure out what's going on this case.
babashka v1.3.176
Clojure CLI version 1.11.1.1257
java --version openjdk 11.0.18 2023-01-17 OpenJDK Runtime Environment (build 11.0.18+0-adhoc..source) OpenJDK 64-Bit Server VM (build 11.0.18+0-adhoc..source, mixed mode)
platform Linux 6.1.20 NixOS x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Again, following babashka book and playing with tasks, noticed a very weird thing:
rm -rf .github/workflows/*
has no issue delete main.yamlbb clean
does not delete main.yaml, empty output, no errorbb clean2
does delete workflows folder as whole as expectedMaybe shell has issue with wildcard?
Related babashka/process#103. An echo maybe helpful to figure out what's going on this case.
related versions
babashka v1.3.176
Clojure CLI version 1.11.1.1257
java --version
openjdk 11.0.18 2023-01-17
OpenJDK Runtime Environment (build 11.0.18+0-adhoc..source)
OpenJDK 64-Bit Server VM (build 11.0.18+0-adhoc..source, mixed mode)
platform
Linux 6.1.20 NixOS x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: