mirror of
https://github.com/minoplhy/minima-dark.git
synced 2024-11-12 22:57:09 +00:00
sync
This commit is contained in:
parent
456420ce2d
commit
08e56c1922
6
script/bootstrap
Executable file
6
script/bootstrap
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
gem install bundler
|
||||
bundle install
|
6
script/build
Executable file
6
script/build
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
echo "Building the example site..."
|
||||
bundle exec jekyll build
|
15
script/cibuild
Executable file
15
script/cibuild
Executable 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
3
script/server
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
bundle exec jekyll serve
|
Loading…
Reference in New Issue
Block a user