mirror of
https://github.com/denoland/deno.git
synced 2025-01-07 22:58:24 -05:00
8 lines
291 B
JavaScript
Executable file
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);
|
|
}
|