From 29eee2682c7a923d6452bd28cc92c83101676589 Mon Sep 17 00:00:00 2001 From: zhangxuan_hw Date: Fri, 21 Mar 2025 15:10:12 +0800 Subject: [PATCH] Fix --- build/Makefile.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build/Makefile.sh b/build/Makefile.sh index 375c8107..6cd45afd 100644 --- a/build/Makefile.sh +++ b/build/Makefile.sh @@ -730,7 +730,15 @@ func_download_3rdparty() else DOWNLOAD_PATH=${WORKSPACE}"/cantian" fi + + echo "目录已存在:${WORKSPACE}" + if [ -d ${DOWNLOAD_PATH}];then + echo "目录已存在:${DOWNLOAD_PATH}" + else + mkdir -p ${DOWNLOAD_PATH} + echo "目录已创建:${DOWNLOAD_PATH}" + fi cd ${DOWNLOAD_PATH} if [[ ${INTERNAL_BUILD} == "FALSE" ]]; then git submodule init -- Gitee