1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-01 08:03:02 +02:00
choosealicense.com/script/server

12 lines
200 B
Bash
Executable File

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