Viewing File: /home/ubuntu/.nvm/versions/node/v16.20.2/lib/node_modules/pm2/run.sh

#!/bin/bash

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