From 8b3d9b9e0a2cec976df01b1e2e92611020bfcff4 Mon Sep 17 00:00:00 2001 From: Frank Lemanschik <117739566+lemanschik@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:08:37 +0200 Subject: [PATCH] Use native node -p to get exec path (#7420) --- ci/build/build-standalone-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build/build-standalone-release.sh b/ci/build/build-standalone-release.sh index f40785577..b0833db81 100755 --- a/ci/build/build-standalone-release.sh +++ b/ci/build/build-standalone-release.sh @@ -16,7 +16,7 @@ main() { # Package managers may shim their own "node" wrapper into the PATH, so run # node and ask it for its true path. local node_path - node_path="$(node <<< 'console.info(process.execPath)')" + node_path="$(node -p process.execPath)" mkdir -p "$RELEASE_PATH/bin" mkdir -p "$RELEASE_PATH/lib"