mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 17:33:05 +08:00
14 lines
304 B
Bash
Executable File
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
|