update.sh 342 B

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