From e80daea6444384524e033a71d89bea667991e213 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 10 Jan 2020 12:32:47 +0000 Subject: [PATCH] Minor tweak of output - Legacy-Id: 17214 --- bin/mergedevbranch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mergedevbranch b/bin/mergedevbranch index ae7f11f44..40a0e1abd 100755 --- a/bin/mergedevbranch +++ b/bin/mergedevbranch @@ -153,7 +153,7 @@ $do svn st | grep "^[AMGRD] " && { note "Extract who and what:" info=$(svn log ${repo}/ -r $rev --incremental) set $(echo "$info" | tail -n +2 | head -n 1 | tr "|" "\t") -who=$2; echo -e "\n$who" +who=$2; echo -e "$who" comment=$(echo "$info" | tail -n +3); echo -e "$comment\n" comment=$(echo "$comment" | sed -r -e 's/(commit )?ready (for|to) merge\.?//i' -e '/^$/d') files=$(svn diff ${repo}/ -c $rev --summarize | awk '{$1=""; print;}' | while read file; do echo "${file/$repo\/$branch\//}"; done)