From c7624bb9ddbb68b9e18cf60b04417ffb159e31d3 Mon Sep 17 00:00:00 2001 From: peefy Date: Wed, 13 Dec 2023 17:45:30 +0800 Subject: [PATCH] feat: change core install scripts to kclvm_cli Signed-off-by: peefy --- static/script/install.ps1 | 2 +- static/script/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/script/install.ps1 b/static/script/install.ps1 index 9d0c0287..f783afb0 100644 --- a/static/script/install.ps1 +++ b/static/script/install.ps1 @@ -29,7 +29,7 @@ $ErrorActionPreference = 'stop' $KCLRoot = $KCLRoot -replace ' ', '` ' # Constants -$KCLCliFileName = "kcl.exe" +$KCLCliFileName = "kclvm_cli.exe" $KCLCliFileBinPath = "${KCLRoot}\bin" $KCLCliFilePath = "${KCLCliFileBinPath}\${KCLCliFileName}" diff --git a/static/script/install.sh b/static/script/install.sh index 873cfed3..a90d30e8 100755 --- a/static/script/install.sh +++ b/static/script/install.sh @@ -31,7 +31,7 @@ GITHUB_ORG=kcl-lang GITHUB_REPO=kcl # KCL filename -KCL_CLI_FILENAME=kcl +KCL_CLI_FILENAME=kclvm_cli # KCL file path KCL_CLI_FILE=${KCL_INSTALL_DIR}/kclvm/bin/${KCL_CLI_FILENAME} # KCL Home dir