Files
probot.github.io/script/bootstrap
Richard Littauer 2b98362921 feat: add more instructions
You need to gem install bundle if it isnt installed yet, and recursive gets submodules in cases where init doesnot, I think.
2018-05-18 16:31:10 -04:00

14 lines
288 B
Bash
Executable File

#!/bin/sh
set -e
export CC=gcc
echo "==> Installing gem dependencies…"
gem install bundle
bundle check --path vendor/gems 2>&1 > /dev/null || {
time bundle install --binstubs bin --path vendor/gems
}
echo "==> Getting submodule for docs…"
git submodule update --init --recursive