Skip to content
Snippets Groups Projects
Commit 087115fa authored by Bob Mottram's avatar Bob Mottram
Browse files

Install shellcheck if needed

parent 1de2c88d
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,10 @@ function test_app_function_type {
}
function test_static_analysis {
if [ ! -f /usr/bin/shellcheck ]; then
apt-get -yq install shellcheck
fi
FILES="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-*"
for filename in $FILES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment