summaryrefslogtreecommitdiff
path: root/src/git.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/git.rs')
-rw-r--r--src/git.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git.rs b/src/git.rs
index 061ed61..26ed4cd 100644
--- a/src/git.rs
+++ b/src/git.rs
@@ -4,7 +4,7 @@ use std::path::Path;
use std::process::Command;
pub fn tag<P: AsRef<Path>>(dirname: P, tag_name: &str, msg: &str) -> Result<(), BumperError> {
- git(dirname.as_ref(), &["tag", "-am", &msg, &tag_name])?;
+ git(dirname.as_ref(), &["tag", "-am", msg, tag_name])?;
Ok(())
}