From 310c43378090701c7755607f8e78520e24227489 Mon Sep 17 00:00:00 2001 From: Dongze Li Date: Fri, 27 Sep 2024 18:51:16 +0800 Subject: [PATCH] update --- python/graphscope/gsctl/scripts/install_deps.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python/graphscope/gsctl/scripts/install_deps.sh b/python/graphscope/gsctl/scripts/install_deps.sh index 5a3fa6100b4f..1de02edf06bb 100755 --- a/python/graphscope/gsctl/scripts/install_deps.sh +++ b/python/graphscope/gsctl/scripts/install_deps.sh @@ -634,7 +634,11 @@ install_vineyard() { -DBUILD_VINEYARD_GRAPH_WITH_GAR=${BUILD_VINEYARD_GRAPH_WITH_GAR} make -j$(nproc) make install - strip "${V6D_PREFIX}"/bin/vineyard* "${V6D_PREFIX}"/lib/libvineyard* + if [[ "${OS_PLATFORM}" == *"Darwin"* ]]; then + strip "${V6D_PREFIX}"/bin/vineyard* + else + strip "${V6D_PREFIX}"/bin/vineyard* "${V6D_PREFIX}"/lib/libvineyard* + fi pip3 install --no-cache -i https://pypi.org/simple -U "vineyard" "vineyard-io" cp -rs "${V6D_PREFIX}"/* "${install_prefix}"/ set +e