diff --git a/dist/setup.js b/dist/setup.js index cebcc73..fdc9901 100644 --- a/dist/setup.js +++ b/dist/setup.js @@ -16,6 +16,7 @@ export default async ({ daggerVersion, engineVersion, wasm, pipeline, args, work action.addPath(join(homedir(), ".local", "share", "mise", "shims")); action.addPath(join(homedir(), ".version-fox", "shims")); action.addPath(join(homedir(), ".nix-profile", "bin")); + action.addPath(join(homedir(), ".local", "bin")); action.addPath("/nix/var/nix/profiles/default/bin"); action.addPath("/home/linuxbrew/.linuxbrew/bin"); await exec("sh", [ diff --git a/src/setup.ts b/src/setup.ts index eafeef5..8380f2c 100644 --- a/src/setup.ts +++ b/src/setup.ts @@ -28,6 +28,7 @@ export default async ({ action.addPath(join(homedir(), ".local", "share", "mise", "shims")); action.addPath(join(homedir(), ".version-fox", "shims")); action.addPath(join(homedir(), ".nix-profile", "bin")); + action.addPath(join(homedir(), ".local", "bin")); action.addPath("/nix/var/nix/profiles/default/bin"); action.addPath("/home/linuxbrew/.linuxbrew/bin");