Add echos

This commit is contained in:
flyingscorpio@arch-desktop 2020-10-25 23:05:58 +01:00
parent 55e489f500
commit c4344c0b5c

View file

@ -59,13 +59,19 @@ hello() {
*) *)
sudo pacman -Syu sudo pacman -Syu
esac esac
echo "Pulling from SetupCockpit"
cd ~/SetupCockpit && git pull cd ~/SetupCockpit && git pull
echo "Pulling from Keepass"
cd ~/Keepass && git pull cd ~/Keepass && git pull
echo "Pulling from TSSR"
cd ~/Lessons/TSSR && git pull cd ~/Lessons/TSSR && git pull
} }
bye() { bye() {
echo "Pushing to SetupCockpit"
cd ~/SetupCockpit && git push cd ~/SetupCockpit && git push
echo "Pushing to Keepas"
cd ~/Keepass && git push cd ~/Keepass && git push
echo "Pushing to TSSR"
cd ~/Lessons/TSSR && git push cd ~/Lessons/TSSR && git push
} }