/script/comwww

http://github.com/budu/lobos · #! · 11 lines · 10 code · 1 blank · 0 comment · 0 complexity · 86612bcf3f57ecb2dc89385927e1ba53 MD5 · raw file

  1. #!/bin/bash
  2. lein www
  3. cd www
  4. git add .
  5. if [ -n "$1" ]; then
  6. git commit "$@"
  7. else
  8. git commit -m "Updated the website content."
  9. fi
  10. cd ..