Files
probot.github.io/script/bootstrap
2017-08-18 14:55:48 -05:00

13 lines
257 B
Bash
Executable File

#!/bin/sh
set -e
export CC=gcc
echo "==> Installing gem dependencies…"
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