mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
10 lines
136 B
Bash
10 lines
136 B
Bash
#!/bin/bash
|
|
|
|
# Check if 'bun' is available, otherwise use 'node'
|
|
if command -v bun &> /dev/null
|
|
then
|
|
bun "$@"
|
|
else
|
|
node "$@"
|
|
fi
|