7 lines
146 B
Bash
Executable file
7 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
echo "!!! Starting upgrade !!!"
|
|
cd /home/swee/sweeBot4Guilded
|
|
echo "Running git fetch..."
|
|
git fetch
|
|
echo "Running git pull..."
|
|
git pull
|