github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/contrib/cirrus/shellcheck.sh (about)

     1  #!/bin/bash
     2  
     3  set -eo pipefail
     4  
     5  # shellcheck source=./contrib/cirrus/lib.sh
     6  source $(dirname $0)/lib.sh
     7  
     8  cd $CIRRUS_WORKING_DIR
     9  shellcheck --color=always --format=tty \
    10      --shell=bash --external-sources \
    11      --enable add-default-case,avoid-nullary-conditions,check-unassigned-uppercase \
    12      --exclude SC2046,SC2034,SC2090,SC2064 \
    13      --wiki-link-count=0 --severity=warning \
    14      $SCRIPT_BASE/*.sh hack/get_ci_vm.sh
    15  
    16  echo "Shellcheck: PASS"