mirror of
https://github.com/github/choosealicense.com
synced 2024-11-11 14:08:53 +01:00
9 lines
164 B
Plaintext
9 lines
164 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "compiling javascript..."
|
||
|
./node_modules/.bin/coffee -c javascripts/app.coffee
|
||
|
|
||
|
echo "building the site..."
|
||
|
bundle exec jekyll build --trace
|