Skip to content

Commit

Permalink
fix: fix error in cli kcl-language-server --version
Browse files Browse the repository at this point in the history
Signed-off-by: he1pa <[email protected]>
  • Loading branch information
He1pa committed Aug 12, 2024
1 parent cb2beb4 commit dbe411b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kclvm/tools/src/LSP/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ fn main() -> Result<(), anyhow::Error> {
Ok(())
}
},
Err(e) => Err(e.into()),
Err(e) => e.exit(),
}
}

Expand Down

0 comments on commit dbe411b

Please sign in to comment.