We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57cc2dd commit d2e4ed6Copy full SHA for d2e4ed6
src/lib.rs
@@ -145,7 +145,7 @@ pub fn query_git_tags(
145
.output()
146
.expect("Failed to execute git tag command");
147
148
- debug!("Output: {}", output.status.to_string());
+ debug!("Output: {}", output.status);
149
let stdout = String::from_utf8(output.stdout)?;
150
debug!("Git tags: {}", stdout);
151
debug!("Error: {}", String::from_utf8(output.stderr)?);
0 commit comments