Guest User

Untitled

a guest
May 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # update sproutcore, scui, and the demo apps
  4. #
  5. # running:
  6. #
  7. # cd /path/to/sc
  8. # source update.sh
  9. #
  10.  
  11. export SPROUTCORE_DEV=`pwd`
  12.  
  13. cd $SPROUTCORE_DEV/sproutcore-git; git pull
  14. cd $SPROUTCORE_DEV/sproutcore-abbot-git; git pull
  15. cd $SPROUTCORE_DEV/sproutcore-ui-git; git pull
  16.  
  17. # demo: sproutcore-samples
  18. cd $SPROUTCORE_DEV/demos/sproutcore-samples-git; git pull
  19. cd frameworks/sproutcore; git pull
  20.  
  21. # demo: scui-samples
  22. cd $SPROUTCORE_DEV/demos/scui-samples-git
  23. cd frameworks/scui; git pull
  24.  
  25. # demo: linkit
  26. cd $SPROUTCORE_DEV/demos/linkit-demo-git
  27. cd frameworks/sproutcore; git pull
  28. cd ../scui; git pull
  29.  
  30. # demo: tasks
  31. cd $SPROUTCORE_DEV/demos/tasks-git; git pull
  32. cd frameworks/scui; git pull
  33.  
  34. cd $SPROUTCORE_DEV
Add Comment
Please, Sign In to add comment