15 lines
291 B
Bash
Executable File
15 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file belongs to the framework. You are not expected to modify it.
|
|
|
|
set -eu
|
|
|
|
node_shim_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
export node_shim_DIR
|
|
|
|
source "$node_shim_DIR"/../versions
|
|
|
|
source "$node_shim_DIR"/node.common
|
|
|
|
exec "$nodejs_binary_dir/node" "$@"
|