Browse Source

Jakub's changes broke the progress message slightly.

We really need that ^M (\r), not a ^J (\n) if we want the status message to
overwrite itself nicely.
maint
Avery Pennarun 15 years ago
parent
commit
e2d0a4502f
  1. 3
      git-subtree.sh

3
git-subtree.sh

@ -520,8 +520,7 @@ cmd_split() @@ -520,8 +520,7 @@ cmd_split()
eval "$grl" |
while read rev parents; do
revcount=$(($revcount + 1))
say -n "$revcount/$revmax ($createcount)
"
say -n "$revcount/$revmax ($createcount) "
debug "Processing commit: $rev"
exists=$(cache_get $rev)
if [ -n "$exists" ]; then

Loading…
Cancel
Save