Skip to content

Commit

Permalink
feat: raise warning instead if install default gems failed (#2097)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiz4oh authored and jdx committed May 14, 2024
1 parent f43b95a commit 83350be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plugins/core/ruby.rs
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ impl Forge for RubyPlugin {
self.test_ruby(&config, &ctx.tv, ctx.pr.as_ref())?;
self.install_rubygems_hook(&ctx.tv)?;
self.test_gem(&config, &ctx.tv, ctx.pr.as_ref())?;
self.install_default_gems(&config, &ctx.tv, ctx.pr.as_ref())?;
if let Err(err) = self.install_default_gems(&config, &ctx.tv, ctx.pr.as_ref()) {
warn!("{err}");
}
Ok(())
}

Expand Down

0 comments on commit 83350be

Please sign in to comment.