Makefile: fix lepton CLI call

This commit is contained in:
King Kévin 2022-02-02 15:38:51 +01:00
parent 62f35353d4
commit e3ebf72bcb
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ end
desc "generate printable version (PDF) of schematic"
rule ".sch.pdf" => ".versioned.sch" do |t|
sh "lepton-cli export --color --paper iso_a4 --layout landscape --output #{t.name} #{t.source} 2> /dev/null"
sh "lepton-cli export --color --paper=iso_a4 --layout=landscape --output=#{t.name} #{t.source} 2> /dev/null"
end
desc "generate printable version (PostScript) of board layout"