From ab86ee469d8ce4c304c51d10e424fb9a3cf4c931 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Fri, 29 Jan 2016 11:06:02 -0500 Subject: [PATCH] fix bash syntax error --- bin/git-vendor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/git-vendor b/bin/git-vendor index 6643061..915d92b 100755 --- a/bin/git-vendor +++ b/bin/git-vendor @@ -127,8 +127,8 @@ cmd_update() if [ "$2" != "" ]; then ref="$2" fi - if [ $# -lt 1]; then - die "Incorrect options provided: git vendor upate []" + if [ $# -lt 1 ]; then + die "Incorrect options provided: git vendor update []" fi git log -1 --grep="^git-vendor-name: $name\$" \ --pretty=format:'START %H%n%s%n%n%b%nEND%n' HEAD |