summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgit-log-describe.awk3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-log-describe.awk b/git-log-describe.awk
index 9bb5896..579b06d 100755
--- a/git-log-describe.awk
+++ b/git-log-describe.awk
@@ -31,6 +31,7 @@ $1 == "commit" && $2 ~ /^[0-9a-f]{5,40}$/ {
printf("%" indent_len "sDescribe: ", "");
if (is_color) printf("\033[96m"); # light cyan
- system("git describe --first-parent " hash);# " |tr -d '\''\n'\''");
+ system("git describe --first-parent " hash " | tr -d '\n'");
if (is_color) printf("\033[m");
+ printf("\n");
}