Skip to content

Commit 02c4b74

Browse files
committed
remove pipeing std into /dev/null
1 parent d97a7cd commit 02c4b74

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

render-pcb.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,9 @@ echo $output_path
5151

5252
mkdir -p $output_path
5353
echo "rendering top"
54-
$KICAD_CLI pcb render --side top --background $background -o $output_path/top.png $kicad_pcb > /dev/null
55-
54+
$KICAD_CLI pcb render --side top --background $background -o $output_path/top.png $kicad_pcb
5655
echo "rendering bottom"
57-
$KICAD_CLI pcb render --side bottom --background $background -o $output_path/bottom.png $kicad_pcb > /dev/null
56+
$KICAD_CLI pcb render --side bottom --background $background -o $output_path/bottom.png $kicad_pcb
5857

5958
if [[ -n "$animation" ]]; then
6059
echo "rendering animation"

0 commit comments

Comments
 (0)