mirror of
https://github.com/minoplhy/minima-dark.git
synced 2024-11-13 23:27:11 +00:00
16 lines
214 B
Bash
Executable File
16 lines
214 B
Bash
Executable File
#!/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
|