From ad95f652b8da1824fba5d36597ab2938704fe81f Mon Sep 17 00:00:00 2001 From: Michael Wolf Date: Thu, 1 Jan 2026 14:10:57 -0600 Subject: [PATCH] Fix bogus path expansion --- framework/shims/node | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/framework/shims/node b/framework/shims/node index c1dce5c..090bb9a 100755 --- a/framework/shims/node +++ b/framework/shims/node @@ -11,6 +11,4 @@ source "$node_shim_DIR"/../versions source "$node_shim_DIR"/node.common -node_bin="$node_shim_DIR/../../$nodejs_binary_dir/node" - -exec "$node_bin" "$@" +exec "$nodejs_binary_dir/node" "$@"