durfdoen-2.0/Makefile

12 lines
319 B
Makefile
Raw Normal View History

2020-02-29 00:47:15 +01:00
.PHONY: live build setup
live:
bundle exec nanoc live
2020-02-27 16:55:36 +01:00
build:
2020-02-29 00:47:15 +01:00
bundle exec nanoc
setup:
which bundle || { { gem install bundler && which bundle; } || echo 'Could not find `bundle`.'" Make sure the directory with the Ruby's gem executables is in your PATH. (Typically ~/.gem/ruby/*/bin)" && false; }
bundle install