Skip to content

Commit

Permalink
add linuxbrew to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 15, 2024
1 parent 0700bdb commit 9b95699
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 @@ -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",
Expand Down
1 change: 1 addition & 0 deletions src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 9b95699

Please sign in to comment.