Skip to content

Instantly share code, notes, and snippets.

@tjwaterman99
Created August 28, 2019 02:13
Show Gist options
  • Save tjwaterman99/51476bccc6662da3c1b31e935648fdf0 to your computer and use it in GitHub Desktop.
Save tjwaterman99/51476bccc6662da3c1b31e935648fdf0 to your computer and use it in GitHub Desktop.
#!/bin/bash
root=$(pwd)
echo "Checking client..."
cd client
git pull
git status
echo "Done"
echo ""
echo "Checking server..."
cd $root/server
git pull
git status
echo "Done"
echo ""
echo "Checking function..."
cd $root/function
git pull
git status
echo "Done"
echo ""
echo "checking www"
cd $root/www
git pull
git status
echo "Done"
echo ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment