publish.sh 735 B

123456789101112131415
  1. #!/bin/sh
  2. echo "sync with cl-user"
  3. darcs push rdavis@common-lisp.net:/project/adw-charting/public_html/darcs/adw-charting
  4. echo "Compile the help"
  5. read -p "hit enter when everything is ready in the doc folder, org files exported, etc"
  6. echo "Publish the help"
  7. scp doc/docs.html rdavis@common-lisp.net:/project/adw-charting/public_html/index.html
  8. scp doc/*.html rdavis@common-lisp.net:/project/adw-charting/public_html/
  9. scp doc/*.png rdavis@common-lisp.net:/project/adw-charting/public_html/
  10. echo "Make the distribution tarball"
  11. darcs dist -d adw-charting
  12. echo "publish the distribution tarball"
  13. scp adw-charting.tar.gz rdavis@common-lisp.net:/project/adw-charting/public_html/
  14. echo "all done. Now go blog and post to the mailing list."