chore: include vendored node executable (#5160)

This commit is contained in:
Alex Hancock
2025-10-14 12:06:17 -04:00
committed by GitHub
parent d98942579e
commit 0f8e073d63
3 changed files with 122 additions and 94 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
# Enable strict mode to exit on errors and unset variables
set -euo pipefail
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Source the common setup script
source "$SCRIPT_DIR/node-setup-common.sh"
# Final step: Execute node with passed arguments
log "Executing 'node' command with arguments: $*"
node "$@" || log "Failed to execute 'node' with arguments: $*"
log "node script completed successfully."