github.com/openshift/installer@v1.4.17/hack/tf-lint.sh (about) 1 #!/bin/sh 2 if [ "$IS_CONTAINER" != "" ]; then 3 tflint 4 else 5 podman run --rm \ 6 --env IS_CONTAINER=TRUE \ 7 --volume "${PWD}:/data:z" \ 8 --entrypoint sh \ 9 quay.io/coreos/tflint \ 10 ./hack/tf-lint.sh 11 fi;