Skip to content

Commit

Permalink
fix: fix error in cli kcl-language-server --version (#1558)
Browse files Browse the repository at this point in the history
Signed-off-by: he1pa <[email protected]>
  • Loading branch information
He1pa authored Aug 12, 2024
1 parent 7487a8b commit dcbd9d9
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 dcbd9d9

Please sign in to comment.