update readme and scripts
This commit is contained in:
@@ -941,7 +941,7 @@ def install_node_from_nodesource(version: str):
|
||||
print(f" npm: {npm_ver}")
|
||||
else:
|
||||
print(f" Node.js: {node_ver}")
|
||||
print(f" ⚠ npm not found, attempting to install...")
|
||||
print(f"⚠ npm not found, installing..)
|
||||
|
||||
run(["apt-get", "install", "-y", "npm"], check=False)
|
||||
|
||||
@@ -950,9 +950,9 @@ def install_node_from_nodesource(version: str):
|
||||
|
||||
if shutil.which("npm"):
|
||||
npm_ver = run_out(["npm", "--version"], check=False).strip()
|
||||
print(f" ✔ npm {npm_ver} installed successfully")
|
||||
print(f"✔ npm {npm_ver} installed successfully")
|
||||
else:
|
||||
print(f" ✖ npm could not be installed - manual intervention required")
|
||||
print(f"✖ npm could not be installed - manual intervention required")
|
||||
else:
|
||||
print("✖ Node.js installation failed")
|
||||
raise RuntimeError("Node.js installation failed")
|
||||
|
||||
Reference in New Issue
Block a user