From 3e869c0c1c633ac86ed6dd812c73581330be1b3c Mon Sep 17 00:00:00 2001 From: Eric F Crist Date: Wed, 16 Jan 2019 16:15:47 -0600 Subject: [PATCH] Set shellcheck servity to warning+ Added the -S warning option to the shellcheck call to make informational and style suggestions not throw errors in travis. These types of things can be picked up in code review. Signed-off-by: Eric F Crist --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6fb821a..dbb8e0b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ env: script: - which shellcheck - shellcheck -V - - bash -c 'export SHELLCHECK_OPTS="-e SC2006"; shopt -s globstar; shellcheck **/*.sh easyrsa3/easyrsa' + - bash -c 'export SHELLCHECK_OPTS="-S warning -e SC2006"; shopt -s globstar; shellcheck **/*.sh easyrsa3/easyrsa' - bash -c 'pwd' - bash -c 'ls -la' - which openssl