github.com/criteo/command-launcher@v0.0.0-20230407142452-fb616f546e98/test/packages-src/exit-code/manifest.mf (about) 1 { 2 "pkgName": "exit-code-test", 3 "version": "1.0.0", 4 "cmds": [ 5 { 6 "name": "exit0", 7 "type": "executable", 8 "short": "a command exits with code 0", 9 "executable": "{{.PackageDir}}/exit-0.{{if eq .Os \"windows\"}}bat{{else}}sh{{end}}", 10 "args": [] 11 }, 12 { 13 "name": "exit1", 14 "type": "executable", 15 "short": "a command exits with code 1", 16 "executable": "{{.PackageDir}}/exit-1.{{if eq .Os \"windows\"}}bat{{else}}sh{{end}}", 17 "args": [] 18 } 19 20 ] 21 }