mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-04 03:01:23 -06:00
13 lines
380 B
Bash
13 lines
380 B
Bash
#!/bin/sh
|
|
|
|
# Install the version of Bundler.
|
|
if [ -f Gemfile.lock ] && grep "BUNDLED WITH" Gemfile.lock > /dev/null; then
|
|
cat Gemfile.lock | tail -n 2 | grep -C2 "BUNDLED WITH" | tail -n 1 | xargs gem install bundler -v
|
|
fi
|
|
|
|
# If there's a Gemfile, then run `bundle install`
|
|
# It's assumed that the Gemfile will install Jekyll too
|
|
if [ -f Gemfile ]; then
|
|
bundle install
|
|
fi
|