Skip to content

Commit

Permalink
add .arkade/bin to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 6, 2024
1 parent 2a07264 commit ff13f63
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,14 +11,15 @@ export default async ({ daggerVersion, engineVersion, wasm, pipeline, args, work
if (!wasm) {
await installDocker();
}
// add nix, mise, vfox, moon, bun and rye to PATH
// add nix, mise, vfox, moon, bun, arkade 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(), ".bun", "bin"));
action.addPath(join(homedir(), ".nix-profile", "bin"));
action.addPath(join(homedir(), ".local", "bin"));
action.addPath(join(homedir(), ".arkade", "bin"));
action.addPath("/nix/var/nix/profiles/default/bin");
action.addPath("/home/linuxbrew/.linuxbrew/bin");
await exec("sh", [
Expand Down
3 changes: 2 additions & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ export default async ({
await installDocker();
}

// add nix, mise, vfox, moon, bun and rye to PATH
// add nix, mise, vfox, moon, bun, arkade 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(), ".bun", "bin"));
action.addPath(join(homedir(), ".nix-profile", "bin"));
action.addPath(join(homedir(), ".local", "bin"));
action.addPath(join(homedir(), ".arkade", "bin"));
action.addPath("/nix/var/nix/profiles/default/bin");
action.addPath("/home/linuxbrew/.linuxbrew/bin");

Expand Down

0 comments on commit ff13f63

Please sign in to comment.