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