blob: 857904bc64eb9d6aaa13ee444e0898a6c90f1a4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -e
[ -z "$DEBUG" ] || set -x
echo ["$(date "+%H:%M:%S")"] "==> Running setup…"
bin/setup
echo ["$(date "+%H:%M:%S")"] "==> Running linters…"
bundle exec rake lint
|