Skip to content

Commit

Permalink
plotkicadsch: fix bug when not specifying output directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jnavila committed Dec 6, 2018
1 parent 0e0c4e1 commit b7881ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotkicadsch/src/plotkicadsch.ml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let process_libs libs =
let () =
let files = ref [] in
let libs = ref [] in
let outpath = ref "" in
let outpath = ref "." in
let speclist = [
("-l", Arg.String (fun lib -> libs := lib::!libs), "specify component library");
("-f", Arg.String(fun sch -> files := sch::!files), "sch file to process");
Expand Down

0 comments on commit b7881ee

Please sign in to comment.