git-commit-list: fix typo

command is written with two m, not three.

Closes #156
This commit is contained in:
Sebastian S 2017-03-29 11:19:09 +02:00 committed by Matt Hamilton
parent ae771c878f
commit 449634a99e
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
if ! is-true "$(commmand git rev-parse --is-inside-work-tree 2> /dev/null)"; then
if ! is-true "$(command git rev-parse --is-inside-work-tree 2> /dev/null)"; then
print "${0}: not a repository work tree: ${PWD}" >&2
return 1
fi