From 2d54339b25d84826dee51a6eca94bef340b0b295 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Thu, 16 Jan 2025 00:31:38 +0300 Subject: [PATCH] fix pkgx install --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index df9b6cf..932e389 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -191,7 +191,7 @@ export async function setupPkgx() { const command = new Deno.Command("bash", { args: [ "-c", - `type pkgx >/dev/null 2>&1 || curl -Ssf https://pkgx.sh/$(uname)/$(uname -m).tgz | tar xz -C $HOME/.local/bin`, + `type pkgx >/dev/null 2>&1 || curl -Ssf https://pkgx.sh`, ], stdout: "inherit", stderr: "inherit",