mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 03:08:51 +01:00
10 lines
154 B
Bash
Executable File
10 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "compiling javascript..."
|
|
./node_modules/.bin/coffee -c javascripts/app.coffee
|
|
|
|
echo "building the site..."
|
|
bundle exec rake test
|