Skip to content

Commit b7881ee

Browse files
committed
plotkicadsch: fix bug when not specifying output directory
1 parent 0e0c4e1 commit b7881ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotkicadsch/src/plotkicadsch.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let process_libs libs =
1919
let () =
2020
let files = ref [] in
2121
let libs = ref [] in
22-
let outpath = ref "" in
22+
let outpath = ref "." in
2323
let speclist = [
2424
("-l", Arg.String (fun lib -> libs := lib::!libs), "specify component library");
2525
("-f", Arg.String(fun sch -> files := sch::!files), "sch file to process");

0 commit comments

Comments
 (0)