cli.git: Fix parameter order.

elevate-erg
Doug Coleman 2018-07-06 18:49:19 -05:00
parent 0f2466e6fb
commit 9d911fab73
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ cli-git-num-parallel [ cpus 2 * ] initialize
: git-diff-name-only* ( from to -- lines )
[ { "git" "diff" "--name-only" } ] 2dip 2array append git-command>lines ;
: git-diff-name-only ( path from to -- lines )
[ git-diff-name-only* ] with-directory ;
'[ _ _ git-diff-name-only* ] with-directory ;
: git-repository? ( directory -- ? )
".git" append-path current-directory get prepend-path