From b199d9f73c101de0886092e3d1aa411815f24c58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 27 Mar 2014 14:15:27 +0100 Subject: [PATCH] fix sch2pcb, now used the source schematic --- hardware/Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/Rakefile b/hardware/Rakefile index bd25a79..6f131f7 100644 --- a/hardware/Rakefile +++ b/hardware/Rakefile @@ -87,7 +87,7 @@ end desc "convert schematic to pcb layout" task :sch2pcb do targets.each do |target| - sh "gsch2pcb #{target[:vsch]} --elements-dir #{File.dirname(__FILE__)}/lib/footprints --skip-m4 --output-name #{target[:name]}" + sh "gsch2pcb #{target[:sch]} --elements-dir #{File.dirname(__FILE__)}/lib/footprints --skip-m4 --output-name #{target[:name]}" end end CLOBBER.include("*.net")