From 96c9af0484664ae3aaf36ebbe4c41258a058b541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 20 Jun 2023 11:05:53 +0200 Subject: [PATCH] Fix package command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Juan Luis Cano Rodríguez --- kedro/framework/cli/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kedro/framework/cli/project.py b/kedro/framework/cli/project.py index fd63ce93a0..d7c3421601 100644 --- a/kedro/framework/cli/project.py +++ b/kedro/framework/cli/project.py @@ -159,7 +159,7 @@ def package(metadata: ProjectMetadata): "build", "--wheel", "--outdir", - "../dist", + "dist", ], cwd=str(project_path), )