We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
spacetimedb-update self-install
1 parent 9f09e8a commit 6ebb2abCopy full SHA for 6ebb2ab
1 file changed
crates/update/src/cli/self_install.rs
@@ -67,12 +67,9 @@ impl SelfInstall {
67
.context("could not install binary")?;
68
69
eprintln!("Downloading latest version...");
70
- let res = super::upgrade::Upgrade {}
+ super::upgrade::Upgrade {}
71
.exec(&paths)
72
- .context("failed to download and install latest SpacetimeDB version");
73
- if let Err(err) = &res {
74
- eprintln!("Error: {err:#}\n")
75
- }
+ .context("failed to download and install latest SpacetimeDB version")?;
76
77
eprintln!(
78
"The `spacetime` command has been installed as {}",
0 commit comments