Skip to content
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

Add support for environment variables #48

Open
ake-persson opened this issue Nov 20, 2017 · 1 comment
Open

Add support for environment variables #48

ake-persson opened this issue Nov 20, 2017 · 1 comment

Comments

@ake-persson
Copy link

Would be nice to have support for environment variables built-in like:

--my-opt=<value>                     My option (env: MY_OPT). [default: my-value]
@ake-persson
Copy link
Author

Basically the equiv. of doing:

if v, ok := args["--my-opt"]; ok && v == nil {
	if v, ok := os.LookupEnv("MY_OPT"); ok {
		args["--my-opt"] = v
	}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant