update.sh 379 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/bin/sh
  2. cd .dependencies
  3. cd cpp_tools
  4. git pull -r
  5. cd ..
  6. cd libsimple_file
  7. git pull -r
  8. cd ..
  9. cd libsimple_support
  10. git pull -r
  11. cd ..
  12. cd libsimple_geom
  13. git pull -r
  14. cd ..
  15. cd libsimple_sdlcore
  16. git pull -r
  17. cd ..
  18. cd libsimple_graphical
  19. git pull -r
  20. cd ..
  21. cd libsimple_interactive
  22. git pull -r
  23. cd ..
  24. cd libsimple_musical
  25. git pull -r
  26. cd ..
  27. cd ..
  28. ./tools/setup/install.sh "$@"