Files
probot.github.io/script/bootstrap
2018-06-11 16:43:02 +02:00

14 lines
304 B
Bash
Executable File

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