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 15, 2024
1 parent de3e3af commit 48db515
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 48db515

Please sign in to comment.