aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/injections/yaml/bash-on-taskfiles.yml
blob: c99dc46676592130a6d759409a0a41d05fa75329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# https://taskfile.dev

version: '3'

vars:
  GREETING:
    sh: echo "Hello, World!"
    #   ^ @bash

tasks:
  default:
    cmds:
      - echo "{{.GREETING}}"
    #   ^ @bash
    silent: true
  cmd:
    cmd: echo "{{.GREETING}}"
    #    ^ @bash
    silent: true
  cmd-block:
    cmd: |
      echo "{{.GREETING}}"
    # ^ @bash
    silent: true