* Remove SC2006 from shellcheck: bashism * Put variable declarations on separate lines (SC1007) * Remove "local" from Windows sh script (SC2039) * Remove "x" variable define from read in Windows sh script (SC2034) Signed-off-by: Eric F Crist <ecrist@secure-computing.net>
14 lines
218 B
YAML
14 lines
218 B
YAML
language: bash
|
|
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- debian-sid
|
|
packages:
|
|
- shellcheck
|
|
|
|
script:
|
|
- bash -c 'export SHELLCHECK_OPTS="-e SC2006"; shopt -s globstar; shellcheck **/*.sh easyrsa3/easyrsa'
|