mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-31 04:31:01 -05:00
15 lines
283 B
Bash
Executable File
15 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${STATIC_CHECKS}" = "true" ]; then
|
|
set -euv
|
|
gem install --update overcommit rubocop haml-lint bundler-audit;
|
|
npm install;
|
|
pip install yamllint --user;
|
|
|
|
overcommit --install;
|
|
overcommit --sign;
|
|
overcommit --sign pre-commit;
|
|
|
|
bundle-audit update;
|
|
fi
|