test: add test for bash injection in taskfiles

This commit is contained in:
Anthony Fiddes 2025-04-06 19:00:51 +02:00
parent 82f6628a58
commit c9b247b322

View file

@ -0,0 +1,15 @@
# https://taskfile.dev
version: '3'
vars:
GREETING:
sh: echo "Hello, World!"
# ^ @bash
tasks:
default:
cmds:
- echo "{{.GREETING}}"
# ^ @bash
silent: true