blob: fe2d822f58b39c569f8f265a224810c8d2e8762d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
ruby -v
gem install bundler --conservative -v '~> 2.0'
git submodule update --init
bundle install
echo ["$(date "+%H:%M:%S")"] "==> Compiling…"
bin/compile
echo ["$(date "+%H:%M:%S")"] "==> Pulling cache…"
bin/run pull
|