Andy Parkins <andyparkins@xxxxxxxxx> writes: > The commithash for updating the ref is obtained from a call to > git-commit-tree. However, it was returned (and stored) with the > trailing newline. This meant that the later call to git-update-ref that > was trying to update to $commithash was including the newline in the > parameter - obviously that hash would never exist, and so git-update-ref > would always fail. > > The solution is to chomp() the commithash as soon as it is returned by > git-commit-tree. > > Signed-off-by: Andy Parkins <andyparkins@xxxxxxxxx> > my $commithash = `git-commit-tree $treehash -p $parenthash < $msg_filename`; > + chomp($commithash); > $log->info("Commit hash : $commithash"); > Thanks. Do we need to compensate with a trailing LF in the $log line? - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html