Skip to content

Commit

Permalink
Merge pull request #13 from ExitoLab/feature/testing-varfile
Browse files Browse the repository at this point in the history
fix: fixed an existing bug
  • Loading branch information
ExitoLab authored Jul 10, 2021
2 parents 445d2dc + 735f863 commit 4670b60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Packer build
uses: ExitoLab/packer_build_action_aws@v2.8
uses: ExitoLab/packer_build_action_aws@v2.9
with:
templateFile: 'packer-template.json'
workingDir: '.'
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fi

# #check if variable file is supply
variableCommand=""
if [ -f "{$INPUT_VARFILE}" ]; then
if [ -f "$INPUT_VARFILE" ]; then
variableCommand="-var-file=$INPUT_VARFILE"
fi

Expand Down

0 comments on commit 4670b60

Please sign in to comment.