update_website_wiki.sh 392 B

1234567891011121314151617181920212223242526
  1. #!/bin/bash
  2. cd ../bambuddy-website
  3. git add .
  4. git commit -m "Updated website"
  5. git push
  6. cd ../bambuddy-wiki
  7. git add .
  8. git commit -m "Updated Wiki"
  9. git push
  10. cd ../bambuddy-languages
  11. git add .
  12. git commit -m "Updated Bambuddy Languages"
  13. git push
  14. cd ../spoolbuddy-website
  15. git add .
  16. git commit -m "Updated website"
  17. git push
  18. cd ../spoolbuddy-wiki
  19. git add .
  20. git commit -m "Updated Wiki"
  21. git push