From e89104d91b40d2a03d2701b2f04bd2c01ea147b8 Mon Sep 17 00:00:00 2001 From: Eugene Rakhmatulin Date: Tue, 31 Mar 2026 16:25:05 -0700 Subject: [PATCH] Always rerun discovery when `--discover` is specified --- run-recipe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run-recipe.py b/run-recipe.py index a9f8104..a141d82 100755 --- a/run-recipe.py +++ b/run-recipe.py @@ -595,6 +595,7 @@ def run_autodiscover() -> dict[str, str] | None: # doesn't exist yet (it's the file we're about to create). env_vars = os.environ.copy() env_vars["CONFIG_FILE"] = str(ENV_FILE) + env_vars["FORCE_DISCOVER"] = "true" env_vars.pop("CONFIG_FILE_SET", None) # Run autodiscover interactively so its prompts are shown to the user