From 1136fb5284a5be907a28d887811e8c08aaa3b4da Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 23 Nov 2005 23:51:33 -0800 Subject: [PATCH] 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 --- git-archimport.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?"; } -- 2.11.0