Skip to content

Commit

Permalink
Tweak the warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Jul 14, 2023
1 parent 15d6a6a commit a5bdb5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
11 changes: 1 addition & 10 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

14 changes: 2 additions & 12 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,22 +298,12 @@ class NixInstallerAction {

async set_github_path(): Promise<void> {
// Interim versions of the `nix-installer` crate may have already manipulated `$GITHUB_PATH`, as root even! Accessing that will be an error.
const github_path = process.env.GITHUB_PATH;
if (typeof github_path === "string") {
try {
access(github_path);
} catch (error) {
actions_core.info(
"Skipping setting $GITHUB_PATH in action, as `nix-installer` crate did it already",
);
}
}
try {
actions_core.addPath("/nix/var/nix/profiles/default/bin");
actions_core.addPath(`${process.env.HOME}/.nix-profile/bin`);
} catch (error) {
actions_core.error(
`Attempt to set \`$GITHUB_PATH\` failed, \`nix\` may not be available on future steps: ${error}`,
actions_core.warning(
"Skipping setting $GITHUB_PATH in action, as `nix-installer` crate seems to have done this already. From `nix-installer` version 0.11.0 and up, this step is only done in the action. Prior to 0.11.0, this was done in the `nix-installer` binary.",
);
}
}
Expand Down

0 comments on commit a5bdb5e

Please sign in to comment.