mirror of
https://github.com/UniverseDevGroup/PokeBot.git
synced 2025-01-22 09:21:58 -05:00
11 lines
No EOL
207 B
Bash
Executable file
11 lines
No EOL
207 B
Bash
Executable file
#!/bin/bash
|
|
echo 'Welcome to the PokeBot Console.'
|
|
echo 'Press the enter key to start PokeBot.'
|
|
read a
|
|
for (( ; ; ))
|
|
do
|
|
git pull
|
|
npm start
|
|
echo 'Starting back up in 2 seconds...'
|
|
sleep 2
|
|
done |