durfdoen-2.0/Makefile

12 lines
319 B
Makefile
Raw Normal View History

2020-02-28 23:47:15 +00:00
.PHONY: live build setup
live:
bundle exec nanoc live
2020-02-27 15:55:36 +00:00
build:
2020-02-28 23:47:15 +00: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