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
Hello
The new feature introduced in #369 - 'Document-level options "category"' doesn't work properly with --dry-run:
--dry-run
Example - let's have the following file:
install-manual-solution-2.md
--- shell: bash cwd: /tmp category: solution-2 --- Installation steps for Solution 2: ```sh echo "[1] Install command in $PWD" ``` ```sh echo "[2] Install second command" ``` ```sh { "category":"delete-solution" } echo "Delete solution" ``` ```sh { "category":"delete-solution" } echo "Delete solution - second command" ```
If I run runme run --all --skip-prompts --category solution-2 --dry-run I got only first command in markdown document "processed":
runme run --all --skip-prompts --category solution-2 --dry-run
❯ runme run --all --skip-prompts --category solution-2 --dry-run #!/opt/homebrew/bin/bash // run in "/tmp" set -e -o pipefail echo "[1] Install command in $PWD"
This bug is related to #580.
Thank you for looking at it...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello
The new feature introduced in #369 - 'Document-level options "category"' doesn't work properly with
--dry-run
:Example - let's have the following file:
install-manual-solution-2.md
If I run
runme run --all --skip-prompts --category solution-2 --dry-run
I got only first command in markdown document "processed":This bug is related to #580.
Thank you for looking at it...
The text was updated successfully, but these errors were encountered: