We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15231db commit 6624b00Copy full SHA for 6624b00
1 file changed
src/hocon_cli.erl
@@ -407,6 +407,8 @@ stringify(undefined) ->
407
stringify(VMArgsProplist) ->
408
[stringify_line(K, V) || {K, V} <- VMArgsProplist].
409
410
+stringify_line('-setcookie', V) ->
411
+ "-setcookie '" ++ V ++ "'";
412
stringify_line(K, V) when is_list(V) ->
413
io_lib:format("~s ~s", [K, V]);
414
stringify_line(K, V) ->
0 commit comments