diff options
author | Eric Wong <normalperson@yhbt.net> | 2005-11-23 23:51:33 -0800 |
---|---|---|
committer | Martin Langhoff <martin@catalyst.net.nz> | 2005-12-11 14:41:40 +1300 |
commit | 1136fb5284a5be907a28d887811e8c08aaa3b4da (patch) | |
tree | 65aa90256ec59f0040c9361e2bba98fd01f58363 /git-archimport.perl | |
parent | 5744f27794c284758a5c7956b9e5d5669c5dd318 (diff) | |
download | git-1136fb5284a5be907a28d887811e8c08aaa3b4da.tar.gz |
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-x | git-archimport.perl | 2 |
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?"; } |