From e4a6e2b11b6041756550a3a7017b6bb2953f7a15 Mon Sep 17 00:00:00 2001 From: stephen Date: Mon, 28 Oct 2024 14:31:00 +0800 Subject: [PATCH] [chore](fix) fix compile cloud bug --- cloud/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/CMakeLists.txt b/cloud/CMakeLists.txt index 32e60f7bfb5467..e61a3706bb9fc3 100644 --- a/cloud/CMakeLists.txt +++ b/cloud/CMakeLists.txt @@ -435,7 +435,7 @@ endif() if (NOT EXISTS "${THIRDPARTY_SRC}/${FDB_LIB}") file(MAKE_DIRECTORY ${THIRDPARTY_SRC}) - execute_process(COMMAND "curl --retry 10 --retry-delay 2 --retry-max-time 30" "${FDB_LIB_URL}" + execute_process(COMMAND "curl" "--retry" "10" "--retry-delay" "2" "--retry-max-time" "30" "${FDB_LIB_URL}" "-o" "${THIRDPARTY_SRC}/${FDB_LIB}" "-k" RESULTS_VARIABLE DOWNLOAD_RET) if (NOT ${DOWNLOAD_RET} STREQUAL "0")