Skip to content

Commit

Permalink
print out the PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Jan 6, 2025
1 parent 42d15ba commit a845f3a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions builder/imports/nodejs.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def install_node_via_nvm(self, env):
node_path = os.path.dirname(result.output)
sh.setenv('PATH', '{}{}{}'.format(
node_path, os.pathsep, sh.getenv('PATH')))
sh.exec('echo $PATH', check=True)
else:
sh.exec('nvm', 'use', '10.16', check=True)
sh.exec('refreshenv', check=True)
Expand Down

0 comments on commit a845f3a

Please sign in to comment.