We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29b6c0b commit a50b0efCopy full SHA for a50b0ef
2 files changed
controller/bin/boot
@@ -65,6 +65,7 @@ etcd_safe_mkdir /deis/services
65
echo "controller: running etcd data migrations..."
66
for script in /app/migrations/data/*.sh;
67
do
68
+ # shellcheck disable=SC1090
69
. "$script";
70
done
71
echo "controller: done running etcd data migrations."
tests/bin/setup-node.sh
@@ -78,7 +78,7 @@ if ! shellcheck -V &> /dev/null; then
78
apt-get install -yq cabal-install
79
cabal update
80
pushd /tmp
81
- git clone --branch v0.3.8 --single-branch https://github.com/koalaman/shellcheck.git
+ git clone --branch v0.4.1 --single-branch https://github.com/koalaman/shellcheck.git
82
pushd shellcheck
83
cabal install --global
84
popd +2
0 commit comments