Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2005-11-24 10:51:33 +0300
committerMartin Langhoff <martin@catalyst.net.nz>2005-12-11 04:41:40 +0300
commit1136fb5284a5be907a28d887811e8c08aaa3b4da (patch)
tree65aa90256ec59f0040c9361e2bba98fd01f58363 /git-archimport.perl
parent5744f27794c284758a5c7956b9e5d5669c5dd318 (diff)
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 <normalperson@yhbt.net> Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
Diffstat (limited to 'git-archimport.perl')
-rwxr-xr-xgit-archimport.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-archimport.perl b/git-archimport.perl
index 2ed2e3c065..938fa2bbf3 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?";
}