mirror of
https://github.com/ivabus/pantry
synced 2024-11-24 01:15:07 +03:00
28 lines
470 B
TypeScript
28 lines
470 B
TypeScript
|
#!/usr/bin/env -S tea -E
|
||
|
|
||
|
/*---
|
||
|
args:
|
||
|
- deno
|
||
|
- run
|
||
|
- --allow-run
|
||
|
- --allow-read
|
||
|
- --allow-env
|
||
|
- --import-map={{ srcroot }}/import-map.json
|
||
|
---*/
|
||
|
|
||
|
const args = [...Deno.args]
|
||
|
const via = args.shift()
|
||
|
|
||
|
for (const arg of args) {
|
||
|
const proc = Deno.run({
|
||
|
stdout: "null", stderr: "null",
|
||
|
cmd: [via!, arg]
|
||
|
})
|
||
|
const status = await proc.status()
|
||
|
if (status.code !== 0) {
|
||
|
console.error(`${arg} ❌`)
|
||
|
} else {
|
||
|
console.info(`${arg} ✅`)
|
||
|
}
|
||
|
}
|