Skip to content

Commit 76641c8

Browse files
committed
version deps
1 parent f18d8b8 commit 76641c8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pkgm.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env -S pkgx deno^2.1 run --ext=ts --allow-sys=uid --allow-run=pkgx,/usr/bin/sudo --allow-env=PKGX_DIR,HOME --allow-read=/usr/local/pkgs
2-
import { dirname, fromFileUrl, join } from "jsr:@std/path";
3-
import { ensureDir, existsSync } from "jsr:@std/fs";
4-
import { parse as parse_args } from "jsr:@std/flags";
5-
import * as semver from "jsr:@std/semver";
2+
import { dirname, fromFileUrl, join } from "jsr:@std/path@^1";
3+
import { ensureDir, exists, existsSync } from "jsr:@std/fs@^1";
4+
import { parse as parse_args } from "jsr:@std/flags@0.224.0";
5+
import * as semver from "jsr:@std/semver@^1";
66

77
const parsedArgs = parse_args(Deno.args, {
88
alias: {
@@ -115,7 +115,7 @@ async function install(args: string[]) {
115115
"run",
116116
"--ext=ts",
117117
"--allow-write", // cannot be qualified ∵ `Deno.link()` requires full access for some reason
118-
`--allow-read`, // same ^^ 😕
118+
"--allow-read", // same ^^ 😕
119119
self,
120120
"sudo-install",
121121
pkgx_dir,

0 commit comments

Comments
 (0)