client: exit with error on errors
All checks were successful
Build and test / check (push) Successful in 1m44s
Build and test / check-license (push) Successful in 2m0s
Build and test / build (push) Successful in 2m55s
Build and test / test (push) Successful in 3m4s
Build and test / docs (push) Successful in 6m54s

This commit is contained in:
2025-12-16 13:46:17 +09:00
parent 40ce292083
commit 795c6d3c9d
12 changed files with 39 additions and 15 deletions

View File

@@ -107,5 +107,9 @@ pub async fn create_users(
server_connection.send(Request::Exit).await?;
if result.values().any(|res| res.is_err()) {
std::process::exit(1);
}
Ok(())
}