mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-28 07:03:55 +00:00
9 lines
195 B
Bash
Executable File
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 |