Merge branch 'js/rebase-i-progress-tidy'
Regression fix for an i18n topic already in 'master'. * js/rebase-i-progress-tidy: rebase-interactive: trim leading whitespace from progress count
This commit is contained in:
commit
6b9114c649
@ -121,7 +121,7 @@ mark_action_done () {
|
||||
sed -e 1q < "$todo" >> "$done"
|
||||
sed -e 1d < "$todo" >> "$todo".new
|
||||
mv -f "$todo".new "$todo"
|
||||
new_count=$(git stripspace --strip-comments <"$done" | wc -l)
|
||||
new_count=$(( $(git stripspace --strip-comments <"$done" | wc -l) ))
|
||||
echo $new_count >"$msgnum"
|
||||
total=$(($new_count + $(git stripspace --strip-comments <"$todo" | wc -l)))
|
||||
echo $total >"$end"
|
||||
|
Loading…
Reference in New Issue
Block a user