From 88c65a1ff3c102885f2816079fa58b107f1e2519 Mon Sep 17 00:00:00 2001 From: ckunki Date: Wed, 13 Nov 2024 11:23:37 +0100 Subject: [PATCH] Fixed nox task amalgate_lua_scripts --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 0699f953..b9ede710 100644 --- a/noxfile.py +++ b/noxfile.py @@ -54,7 +54,7 @@ def install_dev_env(session: Session): @nox.session(python=False) def amalgate_lua_scripts(session: Session): - script = ROOT_DIR / "exasol" / "analytics" / "deployment" / "regenerate_scripts.py" + script = ROOT_DIR / "exasol" / "analytics" / "query_handler" / "deployment" / "regenerate_scripts.py" _run_in_dev_env_poetry_call(session, "python", str(script))