summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdebian/cherry-pick5
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/cherry-pick b/debian/cherry-pick
index 4906917f..dd557246 100755
--- a/debian/cherry-pick
+++ b/debian/cherry-pick
@@ -170,7 +170,7 @@ main() {
}
local commit_files=""
- commit_files=( debian/changelog "$series" "$fpath" )
+ commit_files=( "$series" "$fpath" )
git diff HEAD "${commit_files[@]}"
echo -n "Commit this change? (Y/n): "
@@ -187,6 +187,9 @@ main() {
git commit -m "$msg" "${commit_files[@]}" ||
fail "failed to commit '$msg'"
+ git commit -m "update changelog" debian/changelog ||
+ fail "failed to commit update to debian changelog."
+
return 0
}