mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-27 08:00:17 +00:00
ci: Added CI/CD and release pipelines (#45)
This commit is contained in:
+3
-6
@@ -782,12 +782,9 @@ impl SetupWizard {
|
||||
fn save_and_summarize(&mut self) -> Result<(), SetupError> {
|
||||
self.settings.onboard_completed = true;
|
||||
|
||||
self.settings.save().map_err(|e| {
|
||||
SetupError::Io(std::io::Error::new(
|
||||
std::io::ErrorKind::Other,
|
||||
format!("Failed to save settings: {}", e),
|
||||
))
|
||||
})?;
|
||||
self.settings
|
||||
.save()
|
||||
.map_err(|e| std::io::Error::other(format!("Failed to save settings: {}", e)))?;
|
||||
|
||||
println!();
|
||||
print_success("Configuration saved to ~/.ironclaw/");
|
||||
|
||||
Reference in New Issue
Block a user