From f89e76b36ea840eaac8922920079c0d3b34e4984 Mon Sep 17 00:00:00 2001 From: Wenxiang Wu Date: Fri, 28 Feb 2025 23:06:50 +0800 Subject: [PATCH] fix: post build tarball failure in ubuntu 20.04 Change-Id: I6ef86565ca3eb9e8140e1288431b608886db258d --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 63a047a1..e9c192f2 100644 --- a/Makefile +++ b/Makefile @@ -76,8 +76,8 @@ package: install rm -rf $(ROOT_DIR)/skyline_console/static yarn run build echo `git rev-parse --verify HEAD` > $(ROOT_DIR)/skyline_console/static/commit_id.txt - python3 -m pip install sdist --break-system-packages - python3 -m pip install build --break-system-packages + python3 -m pip install sdist --break-system-packages || python3 -m pip install sdist + python3 -m pip install build --break-system-packages || python3 -m pip install build python3 -m build