summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/task/task_non_existent.out
blob: bd4b73c6f54b4f4209a9b0d79a5b7c11bd7af0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Warning deno task is unstable and may drastically change in the future
Task not found: non_existent
Available tasks:
- boolean_logic
    sleep 0.1 && echo 3 && echo 4 & echo 1 && echo 2 || echo NOPE
- deno_echo
    deno eval 'console.log(5)'
- echo
    echo 1
- exit_code_5
    echo $(echo 10 ; exit 2) && exit 5
- piped
    echo 12345 | (deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)' && deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)')
- strings
    deno run main.ts && deno eval "console.log(\"test\")"