From e4e7c127ffaef43da566386a17d232d8286f3f22 Mon Sep 17 00:00:00 2001 From: Dongze Li Date: Thu, 5 Sep 2024 14:13:40 +0800 Subject: [PATCH] update --- k8s/internal/Makefile | 2 +- python/graphscope/gsctl/scripts/install_deps.sh | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/k8s/internal/Makefile b/k8s/internal/Makefile index 5493c425c167..a3025067e5f7 100644 --- a/k8s/internal/Makefile +++ b/k8s/internal/Makefile @@ -43,7 +43,7 @@ GRAPHSCOPE_HOME ?= /usr/local INSTALL_PREFIX ?= /opt/graphscope VERSION ?= latest -VINEYARD_VERSION ?= v0.23.0 +VINEYARD_VERSION ?= v0.22.0 PROFILE ?= release CI ?= false diff --git a/python/graphscope/gsctl/scripts/install_deps.sh b/python/graphscope/gsctl/scripts/install_deps.sh index 33d0828fd4b0..cf5b5f6fac77 100755 --- a/python/graphscope/gsctl/scripts/install_deps.sh +++ b/python/graphscope/gsctl/scripts/install_deps.sh @@ -196,9 +196,7 @@ function set_to_cn_url() { function fetch_source() { local url=$1 local file=$2 - command="curl -fsSL -o \"${file}\" \"${url}/${file}\"" - info ${command} - eval ${command} + curl -fsSL -o "${file}" "${url}/${file}" } function download_and_untar() {