jan_flanders

Untitled

May 1st, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/bin/sh
  2.  
  3. cd haxe
  4. CURRENT=$(svn info | grep -i "Last Changed Rev")
  5. LATEST=$(svn info -r HEAD | grep -i "Last Changed Rev")
  6. if ["$CURRENT" -neq "$LATEST"];then
  7.     cd ..
  8.     ocaml install.ml
  9. else
  10.     echo "$CURRENT" -eq "$LATEST" ', nothing to build.'
  11. fi
Advertisement
Add Comment
Please, Sign In to add comment