mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
12 lines
223 B
Bash
Executable File
12 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_PATH="$(dirname "$0")/../lib/binaries/DevCLI.js"
|
|
|
|
# Check if 'bun' is available, otherwise use 'node'
|
|
if command -v bun &> /dev/null
|
|
then
|
|
bun "$SCRIPT_PATH" "$@"
|
|
else
|
|
node "$SCRIPT_PATH" "$@"
|
|
fi
|