From 5d5dd561040be7352481ca94ca2c535c27a02e0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20P=C5=99evr=C3=A1til?= Date: Wed, 25 Oct 2023 14:31:22 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20Assign=20envvar=20to=20`--config?= =?UTF-8?q?`=20cli=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- woke/cli/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/woke/cli/__main__.py b/woke/cli/__main__.py index 686f28543..66380698e 100644 --- a/woke/cli/__main__.py +++ b/woke/cli/__main__.py @@ -66,6 +66,7 @@ def excepthook(attach: bool, type, value, traceback): "--config", required=False, type=click.Path(exists=False, dir_okay=False), + envvar="WOKE_CONFIG", help="Path to the local config file.", ) @click.version_option(message="%(version)s", package_name="woke")