Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
fix docsite build issue (#2083)
Browse files Browse the repository at this point in the history
* fix docsite build error

* use bundle install (not bundle update)
  • Loading branch information
Jay Boyd authored and MHBauer committed May 31, 2018
1 parent 495a94b commit b223252
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ generate() {
-v $DOCSITE:/srv/jekyll \
-v $REPO_ROOT/docs:/srv/docs \
-v $DOCSITE/.bundler:/usr/local/bundle \
jekyll/jekyll jekyll build
jekyll/jekyll /bin/bash -c "bundle install; jekyll build"
}

"$@"
2 changes: 2 additions & 0 deletions docsite/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@ end
gem "kramdown", "~> 1.11"
gem "rouge", "~> 2.0"
gem "pry"

gem "public_suffix", "~> 3.0"
3 changes: 2 additions & 1 deletion docsite/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,10 @@ DEPENDENCIES
kramdown (~> 1.11)
minima (~> 2.0)
pry
public_suffix (~> 3.0)
rouge (~> 2.0)
terminal-table (~> 1.4)
unicode-display_width (~> 1.1)

BUNDLED WITH
1.16.1
1.16.2
2 changes: 2 additions & 0 deletions docsite/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ exclude:
- proposals
- v1

exclude: [vendor]

plugins:
- jekyll-feed
- jekyll-sitemap
Expand Down

0 comments on commit b223252

Please sign in to comment.