From 01ef8cf0841fd5d7d6715922556567dd2f55403b Mon Sep 17 00:00:00 2001 From: yon <835560007@qq.com> Date: Wed, 7 Sep 2022 17:29:52 +0800 Subject: [PATCH] repair quickstart.sh func downloadQuickStartConfig bug Signed-off-by: yon <835560007@qq.com> --- hack/quick-start/quickstart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/quick-start/quickstart.sh b/hack/quick-start/quickstart.sh index 430b93cd5..3854c75a1 100755 --- a/hack/quick-start/quickstart.sh +++ b/hack/quick-start/quickstart.sh @@ -50,7 +50,7 @@ function downloadDtm() { function downloadQuickStartConfig() { # config file is small so we use -s to ignore the output - curl -s -o quickstart.yaml https://raw.githubusercontent.com/devstream-io/devstream/main/examples/quickstart.yaml + curl -s -o quickstart.yaml https://raw.githubusercontent.com/devstream-io/devstream/$latestVersion/examples/quickstart.yaml echo "quickstart.yaml downloaded completed" }