Files
Nim/tests/newconfig/mconfigcheck.nims
flywind 82319ef00d fix #8219; nim check/dump shouldn't run single nimscript project [backport: 1.6] (#19641)
* fix #8219; nim check/dump shouldn't run single nimscript project [backport: 1.6]
2022-03-26 11:50:15 +01:00

10 lines
159 B
Nim

mode = ScriptMode.Verbose
proc build() =
echo "building nim... "
exec "sleep 10"
exec "nonexistant command"
echo getCurrentDir()
echo "hello"
build()