blob: b281dcccc90920b6d9d13cd4c7f55f32f819d711 (
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
|