Bugfix for queryParamsToCliArgs.

This commit is contained in:
Jonathan Bernard 2020-03-23 08:18:08 -05:00
parent e9351fbd9d
commit cb6a3e4312
2 changed files with 3 additions and 3 deletions

View File

@ -199,8 +199,8 @@ proc queryParamsToCliArgs*(queryParams: Table[string, string]): seq[string] =
if k.startsWith("arg"): result.add(v)
else :
result[1].add("--" & k)
if v != "true": result[1].add(v) # support things like ?verbose=true -> cmd --verbose
result.add("--" & k)
if v != "true": result.add(v) # support things like ?verbose=true -> cmd --verbose
proc queryParamsToCliArgs*(queryParams: StringTableRef): seq[string] =
result = @[]

View File

@ -1,6 +1,6 @@
# Package
version = "0.6.3"
version = "0.6.4"
author = "Jonathan Bernard"
description = "Helper functions for writing command line interfaces."
license = "MIT"