This commit is contained in:
minoplhy 2021-06-07 23:33:18 -07:00
parent 456420ce2d
commit 08e56c1922
4 changed files with 30 additions and 0 deletions

6
script/bootstrap Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -e
gem install bundler
bundle install

6
script/build Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -e
echo "Building the example site..."
bundle exec jekyll build

15
script/cibuild Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
set -e
script/build
if test -e "./_site/index.html";then
echo "It builds!"
rm -Rf _site
else
echo "Huh. That's odd. The example site doesn't seem to build."
exit 1
fi
gem build minima.gemspec

3
script/server Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
bundle exec jekyll serve