Use bundler in makefile
ffad061681ea554b66543a4a94e67631db40ed88
1 parent
54906475
Makefile
+3 -3
| 1 | 1 | default: _site |
|
| 2 | - | jekyll build |
|
| 2 | + | bundle exec jekyll build |
|
| 3 | 3 | ||
| 4 | 4 | serve: |
|
| 5 | - | jekyll serve --port 3000 |
|
| 5 | + | bundle exec jekyll serve --port 3000 |
|
| 6 | 6 | ||
| 7 | 7 | dependencies: |
|
| 8 | - | gem install jekyll bundler aws-sdk-s3 |
|
| 8 | + | gem install jekyll bundler aws-sdk-s3 rack |
|
| 9 | 9 | ||
| 10 | 10 | publish: default |
|
| 11 | 11 | ./publish _site |
|
| 12 | 12 | ||
| 13 | 13 | .PHONY: publish |