summaryrefslogtreecommitdiff
path: root/tools/install_prebuilt.js
blob: 831bda4877969780601ae5b35dcd295ffc899780 (plain)
1
2
3
4
5
6
7
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);
}