summaryrefslogtreecommitdiff
path: root/git-archimport.perl
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2005-11-24 07:51:33 (GMT)
committerMartin Langhoff <martin@catalyst.net.nz>2005-12-11 01:41:40 (GMT)
commit1136fb5284a5be907a28d887811e8c08aaa3b4da (patch)
tree65aa90256ec59f0040c9361e2bba98fd01f58363 /git-archimport.perl
parent5744f27794c284758a5c7956b9e5d5669c5dd318 (diff)
downloadgit-1136fb5284a5be907a28d887811e8c08aaa3b4da.zip
git-1136fb5284a5be907a28d887811e8c08aaa3b4da.tar.gz
git-1136fb5284a5be907a28d887811e8c08aaa3b4da.tar.bz2
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 2ed2e3c..938fa2b 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?";
}