chore: include vendored node executable (#5160)
This commit is contained in:
Executable
+16
@@ -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."
|
||||
Reference in New Issue
Block a user