fix(gem): fix incorrectly placed debug message in gem step (#1212)

This commit is contained in:
Gideon
2025-11-06 11:04:20 +01:00
committed by GitHub
parent a52c775247
commit 79f65981a5

View File

@@ -106,8 +106,9 @@ pub fn run_gem(ctx: &ExecutionContext) -> Result<()> {
command.arg("update"); command.arg("update");
if env::var_os("RBENV_SHELL").is_none() { if env::var_os("RBENV_SHELL").is_none() {
debug!("Detected rbenv. Avoiding --user-install");
command.arg("--user-install"); command.arg("--user-install");
} else {
debug!("Detected rbenv. Avoiding --user-install");
} }
command.status_checked() command.status_checked()