Skip to content

Commit

Permalink
ci: Use printf(1) to avoid echo(1) problems
Browse files Browse the repository at this point in the history
Use printf(1) to avoid possible echo(1) incompatibilities like
special escape sequences and the like.
  • Loading branch information
ndim committed Aug 14, 2024
1 parent f8ebf1e commit 0987d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Install
run: sudo cmake --build build --target install
- name: Dryrun_test
run: echo -e \\n | ./tools/test-avrdude -d0 -p"-cdryrun -pm2560" -p"-cdryrun -pavr64du28"
run: printf "\n\n" | ./tools/test-avrdude -d0 -p"-cdryrun -pm2560" -p"-cdryrun -pavr64du28"
- name: Archive build artifacts
if: always()
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 0987d24

Please sign in to comment.