diff --git a/dist/setup.js b/dist/setup.js index cac15b7..cebcc73 100644 --- a/dist/setup.js +++ b/dist/setup.js @@ -17,6 +17,7 @@ export default async ({ daggerVersion, engineVersion, wasm, pipeline, args, work action.addPath(join(homedir(), ".version-fox", "shims")); action.addPath(join(homedir(), ".nix-profile", "bin")); action.addPath("/nix/var/nix/profiles/default/bin"); + action.addPath("/home/linuxbrew/.linuxbrew/bin"); await exec("sh", [ "-c", "curl -fsSL https://deno.land/x/install/install.sh | sh", diff --git a/src/setup.ts b/src/setup.ts index 8607989..eafeef5 100644 --- a/src/setup.ts +++ b/src/setup.ts @@ -29,6 +29,7 @@ export default async ({ action.addPath(join(homedir(), ".version-fox", "shims")); action.addPath(join(homedir(), ".nix-profile", "bin")); action.addPath("/nix/var/nix/profiles/default/bin"); + action.addPath("/home/linuxbrew/.linuxbrew/bin"); await exec("sh", [ "-c",