change server path for vscode extension (#5769)

change server path

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2025-03-12 09:46:18 -07:00
committed by GitHub
parent b61cd3123f
commit 6c09da24a4
13 changed files with 22 additions and 22 deletions

View File

@ -72,7 +72,7 @@ impl Build {
}
fn build_client(sh: &Shell, version: &str, release_tag: &str, target: &Target) -> anyhow::Result<()> {
let bundle_path = Path::new("server");
let bundle_path = Path::new("kcl-language-server/server");
sh.create_dir(bundle_path)?;
sh.copy_file(&target.server_path, bundle_path)?;
if let Some(symbols_path) = &target.symbols_path {