From f4f34640ca1ce0dfea23f1c3bfdc38d77acee9f0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 13 Dec 2025 16:33:07 +0530 Subject: [PATCH] ... --- setup/unix-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index c110c5fc40..8c0dddbd91 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -242,7 +242,7 @@ def main(): # WebEngine is flaky in macOS CI so install rapydscript so bootstrap wont fail npm = 'npm.cmd' if iswindows else 'npm' run(npm, 'install', 'rapydscript-ng') - root = subprocess.check_output(['npm', 'root']).decode().strip() + root = subprocess.check_output([npm, 'root']).decode().strip() with open(os.environ['GITHUB_PATH'], 'a') as f: print(os.path.abspath(os.path.join(root, '.bin')), file=f)