Skip to content

Commit ccf8365

Browse files
committed
Fix output flag in DRC and ERC commands in KiCad CI workflow
1 parent 2802e17 commit ccf8365

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/kicad.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
- name: Run DRC
2626
run: |
27-
kicad-cli pcb drc --output-file=drc.rpt --exit-code-violations tuxkeychain.kicad_pcb
27+
kicad-cli pcb drc --output=drc.rpt --exit-code-violations tuxkeychain.kicad_pcb
2828
status=$?
2929
if [ $status -ne 0 ]; then
3030
echo "DRC failed with exit code $status"
@@ -53,7 +53,7 @@ jobs:
5353
5454
- name: Run ERC
5555
run: |
56-
kicad-cli sch erc --output-file=erc.rpt --exit-code-violations tuxkeychain.kicad_pcb
56+
kicad-cli sch erc --output=erc.rpt --exit-code-violations tuxkeychain.kicad_pcb
5757
status=$?
5858
if [ $status -ne 0 ]; then
5959
echo "ERC failed with exit code $status"

0 commit comments

Comments
 (0)