Skip to content

Commit 7c46b02

Browse files
committed
Fix paths
1 parent 3ecbb54 commit 7c46b02

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
wget ${dl_url}
3131
unzip tflint_linux_amd64.zip
3232
mkdir -p /usr/local/tflint/bin
33-
# Setup PATH for later run steps
34-
echo 'export PATH=/usr/local/tflint/bin:$PATH' >> $BASH_ENV
33+
# Setup PATH for later run steps - ONLY for Bash and not in Bash
34+
#echo 'export PATH=/usr/local/tflint/bin:$PATH' >> $BASH_ENV
3535
echo "Installing tflint..."
3636
install tflint /usr/local/tflint/bin
3737
echo "Configuring tflint..."
@@ -58,8 +58,8 @@ jobs:
5858
#echo "Initializing terraform..."
5959
#terraform init -input=false
6060
echo "Running tflint..."
61-
tflint --version
62-
tflint
61+
/usr/local/tflint/bin/tflint --version
62+
/usr/local/tflint/bin/tflint
6363
6464
workflows:
6565
version: 2

0 commit comments

Comments
 (0)