We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a93ddf commit 3e81a57Copy full SHA for 3e81a57
op-test.sh
@@ -240,6 +240,17 @@ run_shellcheck () {
240
log "easyrsa binary not present, not using shellcheck"
241
fi
242
243
+ # shell-check dev/easyrsa-tools.lib
244
+ if [ -e dev/easyrsa-tools.lib ]; then
245
+ if "${sc_bin}" -s sh -S warning -x dev/easyrsa-tools.lib; then
246
+ log "shellcheck dev/easyrsa-tools.lib completed - ok"
247
+ else
248
+ log "shellcheck dev/easyrsa-tools.lib completed - FAILED"
249
+ fi
250
251
+ log "dev/easyrsa-tools.lib not present, not using shellcheck"
252
253
+
254
# shell-check easyrsa-unit-tests.sh
255
if [ -e easyrsa-unit-tests.sh ]; then
256
if "${sc_bin}" -s sh -S warning -x easyrsa-unit-tests.sh; then
0 commit comments