Skip to content

Commit

Permalink
chore: First implementation
Browse files Browse the repository at this point in the history
Signed-off-by: Jefferson <[email protected]>
  • Loading branch information
riosje committed Feb 26, 2024
1 parent 0cae5e4 commit 5e5b745
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32731,7 +32731,7 @@ async function setupNsolid({ nodeVersion, nsolidVersion, platform, arch }) {
if (metadata.platform === "win32") {
toolPath = external_path_.join(core.toWin32Path(toolPath));
core.addPath(toolPath);
await exec.exec('Set-Alias -Name node -Value nsolid');
await exec.exec('Set-Alias -Name node -Value nsolid.exe -Option AllScope');
return
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function setupNsolid({ nodeVersion, nsolidVersion, platform, arch }
if (metadata.platform === "win32") {
toolPath = path.join(core.toWin32Path(toolPath));
core.addPath(toolPath);
await exec.exec('Set-Alias -Name node -Value nsolid');
await exec.exec('Set-Alias -Name node -Value nsolid.exe -Option AllScope');
return
}

Expand Down

0 comments on commit 5e5b745

Please sign in to comment.