From 449634a99e3ac5d98b7bebaa8e4aef44438484bb Mon Sep 17 00:00:00 2001 From: Sebastian S Date: Wed, 29 Mar 2017 11:19:09 +0200 Subject: [PATCH] git-commit-list: fix typo command is written with two m, not three. Closes #156 --- modules/git/functions/git-commit-lost | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/functions/git-commit-lost b/modules/git/functions/git-commit-lost index e801e6d..671e1e7 100644 --- a/modules/git/functions/git-commit-lost +++ b/modules/git/functions/git-commit-lost @@ -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