blob: 8a283f45f005a1365a970b977c2ea76186730950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
shellcheck bin/*
shellcheck config/files/.bashrc
shellcheck config/files/.profile
shellcheck config/*.sh
shellcheck config/scripts/**/*
shellcheck run.sh
bundle exec rubocop
|