blob: 6851a9814b4504669de7c79c9da21296676cac57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|