mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 06:46:36 +01:00
12 lines
217 B
Bash
Executable File
12 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$IS_CONTAINER" != "" ]; then
|
|
tflint
|
|
else
|
|
podman run --rm \
|
|
--env IS_CONTAINER=TRUE \
|
|
--volume "${PWD}:/data:z" \
|
|
--entrypoint sh \
|
|
quay.io/coreos/tflint \
|
|
./hack/tf-lint.sh
|
|
fi;
|