mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
55eb7dc5e4
Refactor build a bit. This was causing build failure for GHC on linux as the system perl didn't have something autoconf needed. TODO: infuser shouldn't have perl installed!
28 lines
470 B
TypeScript
Executable file
28 lines
470 B
TypeScript
Executable file
#!/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} ✅`)
|
|
}
|
|
}
|