This is an automated email from the git hooks/post-receive script. jwilk pushed a commit to branch master in repository devscripts.
commit e782e494f7b5bca77ced9b189df81712f369c43b Author: Jakub Wilk <[email protected]> Date: Sun Jul 17 22:09:53 2016 +0200 edit-patch: Fix typos in comments --- scripts/edit-patch.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/edit-patch.sh b/scripts/edit-patch.sh index 871ea0c..793f3c9 100755 --- a/scripts/edit-patch.sh +++ b/scripts/edit-patch.sh @@ -39,7 +39,7 @@ fatal_error() { exit 1 } -# check if the given binary is installed and give a error if not +# check if the given binary is installed and give an error if not # arg1: binary # arg2: error message require_installed() { @@ -124,14 +124,14 @@ edit_patch_quilt() { top_patch=$(quilt top) echo "Top patch: $top_patch" if [ -e $PREFIX/$1 ]; then - # if its a existing patch and we are at the end of the stack, + # if it's an existing patch and we are at the end of the stack, # go back at the beginning if ! quilt unapplied; then quilt pop -a fi quilt push $1 else - # if its a new patch make sure we are at the end of the stack + # if it's a new patch, make sure we are at the end of the stack if quilt unapplied >/dev/null; then quilt push -a fi -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
