pantry/scripts/repair.ts
2022-09-08 16:40:35 -04:00

24 lines
444 B
TypeScript
Executable file

#!/usr/bin/env -S tea -E
/*
---
args:
- deno
- run
- --allow-net
- --allow-read={{ tea.prefix }}
- --allow-write={{ tea.prefix }}
- --allow-run # uses `/bin/ln`
- --import-map={{ srcroot }}/import-map.json
---
*/
import repairLinks from "prefab/repair-links.ts"
import { print } from "utils"
print("this because otherwise console.verbose is not defined lol")
for (const project of Deno.args) {
await repairLinks(project)
}