1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 22:58:24 -05:00
denoland-deno/tools/install_prebuilt.js
2024-12-31 19:12:39 +00:00

8 lines
291 B
JavaScript
Executable file

#!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-net --config=tests/config/deno.json
// Copyright 2018-2025 the Deno authors. MIT license.
import { getPrebuilt } from "./util.js";
const args = Deno.args.slice();
for (const arg of args) {
await getPrebuilt(arg);
}