From fc1591ed21adaa970729a6dc5dd6d7287119ca24 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 21 Aug 2023 09:54:35 -0500 Subject: [PATCH] fix: catch unexpected values --- src/viv/viv.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/viv/viv.py b/src/viv/viv.py index 235d62e..132ba2b 100755 --- a/src/viv/viv.py +++ b/src/viv/viv.py @@ -52,7 +52,7 @@ from typing import ( Union, ) -__version__ = "23.8b1-8-gc7bcdfe-dev" +__version__ = "23.8b1-9-gf88a7bd-dev" class Spinner: @@ -119,7 +119,6 @@ def _path_ok(p: Path) -> Path: class Env: defaults = dict( viv_bin_dir=Path.home() / ".local" / "bin", - viv_run_mode="ephemeral", xdg_cache_home=Path.home() / ".cache", xdg_data_home=Path.home() / ".local" / "share", ) @@ -145,6 +144,18 @@ class Env: def _viv_log_path(self) -> Path: return _path_ok(Path(self.xdg_data_home) / "viv") / "viv.log" + @property + def _viv_run_mode(self) -> str: + choices = {"ephemeral", "semi-ephemeral", "persist"} + run_mode = os.getenv("VIV_RUN_MODE", "ephemeral") + if run_mode not in choices: + err_quit( + f"unsupported VIV_RUN_MODE: {run_mode} \noptions: " + + ", ".join( + (f"{a.bold}{a.yellow}{choice}{a.end}" for choice in choices) + ) + ) + class Cfg: @property