From 531206e2b3df65d8c5eae51cbbeb8afa5d1970c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 18 May 2022 17:11:22 +0200 Subject: [PATCH] rake: ignore stdout when exporting svg --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 03f512a..41b5b7c 100644 --- a/Rakefile +++ b/Rakefile @@ -104,12 +104,12 @@ end desc "generate photo realistic picture from layout (top side)" rule ".brd-top.svg" => ".versioned.lht" do |t| - sh "pcb-rnd -x svg --photo-mode --outfile #{t.name} #{t.source} 2> /dev/null" + sh "pcb-rnd -x svg --photo-mode --outfile #{t.name} #{t.source} 1> /dev/null" end desc "generate photo realistic picture from layout (bottom side)" rule ".brd-bottom.svg" => ".versioned.lht" do |t| - sh "pcb-rnd -x svg --photo-mode --flip --outfile #{t.name} #{t.source} 2> /dev/null" + sh "pcb-rnd -x svg --photo-mode --flip --outfile #{t.name} #{t.source} 1> /dev/null" end desc "archive gerbers"