diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/main.rs b/src/main.rs index 92db74f..52820a8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -110,7 +110,7 @@ fn run() -> Result<(), MultiError> {          .map(|s| PathBuf::from(s));      let repos = github::fetch_repos(username) -        .map_err(anyhow::Error::new)?; +        .context("unable to fetch GitHub repositories")?;      let db = database::Db::connect(&database_file)          .context("unable to connect to database")?; | 
