1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 04:40:09 +01:00
2013-07-13 15:25:55 -04:00

12 lines
180 B
Bash
Executable File

#!/bin/sh
set -e
echo "compiling javascript..."
coffee -c javascripts/app.coffee
echo "spinning up the server..."
bundle exec jekyll serve -w
echo "cleaning up..."
rm -Rf _site