Skip to content

Commit

Permalink
add .local/bin to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 16, 2024
1 parent 9b95699 commit c5e443e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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", [
Expand Down
1 change: 1 addition & 0 deletions src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit c5e443e

Please sign in to comment.