diff --git a/README.md b/README.md index fcf1ea9..9c2ae55 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Base URL: **https://gitea.linuxiarz.pl/gru/npm-angie-auto-install** ## Requirements - Debian 12+ / Ubuntu 24.04 (root privileges). -- `curl`, `python3` +- `curl`, `python3`, `sudo` - Network access to fetch packages and Node/Yarn artifacts. - ~2 GB RAM (recommended) or add 2 GB swap for safer frontend builds. diff --git a/npm_install.py b/npm_install.py index 3ac6153..1fa88d2 100644 --- a/npm_install.py +++ b/npm_install.py @@ -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")