More bash injection support for Taskfile (#7805)

This commit is contained in:
Mikkel Mondrup Kristensen 2025-04-07 21:08:22 +02:00 committed by GitHub
parent 205faba176
commit 0e21ee8df6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 3 deletions

View file

@ -13,3 +13,12 @@ tasks:
- echo "{{.GREETING}}"
# ^ @bash
silent: true
cmd:
cmd: echo "{{.GREETING}}"
# ^ @bash
silent: true
cmd-block:
cmd: |
echo "{{.GREETING}}"
# ^ @bash
silent: true