From 1b9c23e5c286a263a673bfb0489053f296b42401 Mon Sep 17 00:00:00 2001 From: "zhu.boxiang" Date: Wed, 29 Sep 2021 13:34:45 +0800 Subject: [PATCH] refactor: Remove -f of poetry build command Remove -f of poetry build command. Merge two commands as 'poetry build'. Change-Id: I66ddd77f995553efb14021cfc5f553fa9d67c180 --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b9336e08..04d3229d 100644 --- a/Makefile +++ b/Makefile @@ -74,8 +74,7 @@ install: package: install rm -rf $(ROOT_DIR)/skyline_console/static yarn run build - poetry build -f wheel - poetry build -f sdist + poetry build .PHONY: fmt