blob: 40458781f63228e70b202bb6fd6279e07462eefb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
ruby -v
gem install bundler --conservative -v '~> 2.0'
git submodule update --init
bundle check || bundle install --jobs "$(sysctl -n hw.ncpu || nproc)"
bin/compile
bin/run pull
|