diff options
Diffstat (limited to 'tools/install_prebuilt.js')
-rwxr-xr-x | tools/install_prebuilt.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/install_prebuilt.js b/tools/install_prebuilt.js new file mode 100755 index 000000000..831bda487 --- /dev/null +++ b/tools/install_prebuilt.js @@ -0,0 +1,8 @@ +#!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-net +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +import { getPrebuilt } from "./util.js"; + +const args = Deno.args.slice(); +for (const arg of args) { + await getPrebuilt(arg); +} |