Browse Source

fix bash syntax error

pull/3/head v1.0.0
Brett Langdon 10 years ago
parent
commit
ab86ee469d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      bin/git-vendor

+ 2
- 2
bin/git-vendor View File

@ -127,8 +127,8 @@ cmd_update()
if [ "$2" != "" ]; then
ref="$2"
fi
if [ $# -lt 1]; then
die "Incorrect options provided: git vendor upate <name> [<ref>]"
if [ $# -lt 1 ]; then
die "Incorrect options provided: git vendor update <name> [<ref>]"
fi
git log -1 --grep="^git-vendor-name: $name\$" \
--pretty=format:'START %H%n%s%n%n%b%nEND%n' HEAD |


Loading…
Cancel
Save