mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
2dcbef2abb
Closes #23715
26 lines
526 B
Text
26 lines
526 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"if": "unix",
|
|
"args": "compile --output=main --no-prompt --allow-read=a.txt main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "./main",
|
|
"args": [],
|
|
"output": "No such file[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"args": [
|
|
"eval",
|
|
"Deno.mkdirSync('sub_dir');"
|
|
],
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "../main",
|
|
"cwd": "sub_dir",
|
|
"args": [],
|
|
"output": "No such file[WILDCARD]"
|
|
}]
|
|
}
|