Skip to content

Commit

Permalink
add .moon/bin to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 26, 2024
1 parent c5e443e commit 50c653d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dist/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ export default async ({ daggerVersion, engineVersion, wasm, pipeline, args, work
if (!wasm) {
await installDocker();
}
// add nix, mise, vfox and rye to PATH
// add nix, mise, vfox, moon and rye to PATH
action.addPath(join(homedir(), ".rye", "shims"));
action.addPath(join(homedir(), ".local", "share", "mise", "shims"));
action.addPath(join(homedir(), ".version-fox", "shims"));
action.addPath(join(homedir(), ".moon", "bin"));
action.addPath(join(homedir(), ".nix-profile", "bin"));
action.addPath(join(homedir(), ".local", "bin"));
action.addPath("/nix/var/nix/profiles/default/bin");
Expand Down
3 changes: 2 additions & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ export default async ({
await installDocker();
}

// add nix, mise, vfox and rye to PATH
// add nix, mise, vfox, moon and rye to PATH
action.addPath(join(homedir(), ".rye", "shims"));
action.addPath(join(homedir(), ".local", "share", "mise", "shims"));
action.addPath(join(homedir(), ".version-fox", "shims"));
action.addPath(join(homedir(), ".moon", "bin"));
action.addPath(join(homedir(), ".nix-profile", "bin"));
action.addPath(join(homedir(), ".local", "bin"));
action.addPath("/nix/var/nix/profiles/default/bin");
Expand Down

0 comments on commit 50c653d

Please sign in to comment.