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