update_website_wiki.sh 389 B

123456789101112131415161718192021222324252627
  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-telemetry/
  11. git add .
  12. git commit -m "Updated Stats"
  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 pull
  20. git add .
  21. git commit -m "Updated Wiki"
  22. git push