From: Eric Wong Date: Thu, 24 Nov 2005 07:51:33 +0000 (-0800) Subject: archimport: remove git wrapper dependency X-Git-Tag: v0.99.9m^2~12 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=1136fb5284a5be907a28d887811e8c08aaa3b4da;p=git.git archimport: remove git wrapper dependency use git-diff-files instead of git diff-files so we don't rely on the wrapper being installed (some people may have git as GNU interactive tools :) Signed-off-by: Eric Wong Signed-off-by: Martin Langhoff --- diff --git a/git-archimport.perl b/git-archimport.perl index 2ed2e3c0..938fa2bb 100755 --- a/git-archimport.perl +++ b/git-archimport.perl @@ -278,7 +278,7 @@ foreach my $ps (@psets) { # # ensure we have a clean state # - if (`git diff-files`) { + if (`git-diff-files`) { die "Unclean tree when about to process $ps->{id} " . " - did we fail to commit cleanly before?"; }