Skip to content

Commit

Permalink
Fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstph-dvx committed Jan 2, 2024
1 parent 1c9249d commit 31c2fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/generate-token-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
paths=(${{ join(matrix.commands.paths, ' ') }})
for path in ${paths[*]}
do
if "${{ inputs.environment }}" == 'Test'
if (( "${{ inputs.environment }}" == 'Test' ))
then
additionalPath='TestFolder/'
else
Expand Down

0 comments on commit 31c2fbd

Please sign in to comment.