From aa2f3f471f53deae1da627f5d51616524e28dbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Sun, 26 Oct 2025 19:26:53 +0100 Subject: [PATCH] node version logic --- npm_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/npm_install.py b/npm_install.py index e5a3390..deb5f94 100644 --- a/npm_install.py +++ b/npm_install.py @@ -384,11 +384,11 @@ def install_nodejs_from_distro(): if shutil.which("node"): node_ver = run_out(["node", "--version"], check=False).strip() - print(f"Node.js: {node_ver}") + print(f" Node.js: {node_ver}") if shutil.which("npm"): npm_ver = run_out(["npm", "--version"], check=False).strip() - print(f"npm: {npm_ver}") + print(f" npm: {npm_ver}") return True return False