From 1e6f6c5facedf9089ab9f67a203b16b19d94f7cb Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Tue, 6 Jul 2021 16:32:31 -0400 Subject: use standard syntax for writer options seems like a good idea considering that these are undocumented, for now --- writer/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'writer/Program.cs') diff --git a/writer/Program.cs b/writer/Program.cs index 6cbcf8e..724fa23 100644 --- a/writer/Program.cs +++ b/writer/Program.cs @@ -47,7 +47,7 @@ namespace writer string settingsPath = null; - string tablePath = maybePop("table", "t"); + string tablePath = maybePop("/table", "/t"); if (tablePath != null) { @@ -57,8 +57,8 @@ namespace writer return new ExtendedSettings(Read(settingsPath), Read(tablePath)); } - string xTablePath = maybePop("xtable", "xt"); - string yTablePath = maybePop("ytable", "yt"); + string xTablePath = maybePop("/xtable", "/xt"); + string yTablePath = maybePop("/ytable", "/yt"); if (args.Count > 1) ExitWithUsage(); else if (args.Count == 1) settingsPath = args[0]; -- cgit v1.2.3