We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ecbb54 commit 7c46b02Copy full SHA for 7c46b02
.circleci/config.yml
@@ -30,8 +30,8 @@ jobs:
30
wget ${dl_url}
31
unzip tflint_linux_amd64.zip
32
mkdir -p /usr/local/tflint/bin
33
- # Setup PATH for later run steps
34
- echo 'export PATH=/usr/local/tflint/bin:$PATH' >> $BASH_ENV
+ # Setup PATH for later run steps - ONLY for Bash and not in Bash
+ #echo 'export PATH=/usr/local/tflint/bin:$PATH' >> $BASH_ENV
35
echo "Installing tflint..."
36
install tflint /usr/local/tflint/bin
37
echo "Configuring tflint..."
@@ -58,8 +58,8 @@ jobs:
58
#echo "Initializing terraform..."
59
#terraform init -input=false
60
echo "Running tflint..."
61
- tflint --version
62
- tflint
+ /usr/local/tflint/bin/tflint --version
+ /usr/local/tflint/bin/tflint
63
64
workflows:
65
version: 2
0 commit comments