mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 11:18:50 +01:00
10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "spinning up the server..."
|
|
bundle exec jekyll serve -w
|
|
|
|
echo "cleaning up..."
|
|
rm -Rf _site
|