Files
tkmind_go/ui/desktop/src/bin/node
T
2025-10-14 12:06:17 -04:00

17 lines
481 B
Bash
Executable File

#!/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."