Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
r
radicle-ci-broker
rad:zwTxygwuz5LDGBq255RA2CbNGrz8
Radicle CI broker
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
902
Issues
170
Patches
306
Jobs
Commits
›
0a8925d9617d35b548377d217cf9c70603395b0d
feat(src/bin/cibtool.rs): handle error without panicing
Lars Wirzenius
committed
1 year ago
commit 0a8925d9617d35b548377d217cf9c70603395b0d
parent
f5edaff8f3344917ccb811ffc6131a69546425d5
1 file changed
+1
-1
modified
src/bin/cibtool.rs
@@ -628,7 +628,7 @@ impl AddRun {
RunResult::Failure
});
-
db.push_run(run).unwrap();
+
db.push_run(run)?;
Ok(())
}