fxa/_scripts/postinstall.sh
2019-04-01 10:58:37 -07:00

9 lines
195 B
Bash
Executable File

#!/bin/sh -ex
if [ "${CIRCLECI}" = "true" ]; then
exit 0
else
_scripts/install_all.sh
pm2 delete servers.json && pm2 start servers.json
echo "Use './pm2 kill' to stop all the servers"
fi