mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
fixed typo error
Signed-off-by: Tj Holowaychuk <tj@vision-media.ca>
This commit is contained in:
parent
758e8ce8b9
commit
5117150a84
|
|
@ -19,7 +19,7 @@ if [ ! -z "$template" ]; then
|
|||
case "$count" in
|
||||
0) echo "The pattern '$template' does not match any available templates." && available_templates | less && exit 1;;
|
||||
1) find $gitignoredir -name $(selected_template).gitignore -exec cat {} \; >> .gitignore && echo "... added patterns from template '$(selected_template)'";;
|
||||
*) echo "Be more specific. $count macthes found:" && selected_template | grep --color $template && exit 2;;
|
||||
*) echo "Be more specific. $count matches found:" && selected_template | grep --color $template && exit 2;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue