From 55e179affecd33a8f0b78891dd3fe81774172336 Mon Sep 17 00:00:00 2001 From: sowmyasri Date: Fri, 19 Jul 2024 10:26:19 +0200 Subject: [PATCH] fixed the build command and added the path flag --- fedn/cli/run_cmd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fedn/cli/run_cmd.py b/fedn/cli/run_cmd.py index 062f58c25..c94680ee3 100644 --- a/fedn/cli/run_cmd.py +++ b/fedn/cli/run_cmd.py @@ -142,6 +142,7 @@ def startup_cmd(ctx, path,venv): shutil.rmtree(dispatcher.python_env_path) @run_cmd.command("build") +@click.option("-p", "--path", required=True, help="Path to package directory containing fedn.yaml") @click.option("-v", "--venv", default=True,type=bool,required=False, help="flag if set to False doesn't remove venv") @click.pass_context def build_cmd(ctx, path,venv):