Skip to content

Commit

Permalink
CICD: improve double quote placement in file evaluation statements
Browse files Browse the repository at this point in the history
  • Loading branch information
swharden committed Apr 13, 2024
1 parent 3d93882 commit 5fb21dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
find . -type f -name "changed*.txt" -empty -delete
- name: Set workflow variables
run: |
echo "MOD_SP4=$( [[ -f changed4.txt ]] && echo "true" || echo "false" ))" >> $GITHUB_ENV
echo "MOD_SP5=$( [[ -f changed5.txt ]] && echo "true" || echo "false" ))" >> $GITHUB_ENV
echo "MOD_SP4=$( [[ -f changed4.txt ]] && echo true || echo false )" >> $GITHUB_ENV
echo "MOD_SP5=$( [[ -f changed5.txt ]] && echo true || echo false )" >> $GITHUB_ENV
- name: ScottPlot4 Changed ${{ env.MOD_SP4 }}
if: ${{ env.MOD_SP4 }}
run: echo sp4 changed
Expand Down

0 comments on commit 5fb21dc

Please sign in to comment.