Skip to content

[WE-19] Deploy configuration overhaul and support for proxies #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jul 27, 2018
Merged
Prev Previous commit
Next Next commit
Send ini flags in a more-compatible way
The flag parser was confused with flags separated by spaces, resulting
in inconsistent behaviour where flags were discarded
  • Loading branch information
matteosuppo committed Jul 26, 2018
commit 2b3cc4dccf5338f21c8925da22db275931b5cc29
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ func parseIni(filename string) (args []string, err error) {
if key == "name" {
continue
}
args = append(args, "-"+key, val)
args = append(args, "-"+key+"="+val)
}
}

Expand Down