summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5744f27)
raw | patch | inline | side by side (parent: 5744f27)
author | Eric Wong <normalperson@yhbt.net> | |
Thu, 24 Nov 2005 07:51:33 +0000 (23:51 -0800) | ||
committer | Martin Langhoff <martin@catalyst.net.nz> | |
Sun, 11 Dec 2005 01:41:40 +0000 (14:41 +1300) |
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>
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>
git-archimport.perl | patch | blob | history |
diff --git a/git-archimport.perl b/git-archimport.perl
index 2ed2e3c0650f42ab557811848c3838f1062487b8..938fa2bbf381a25dad2f9c75afb4a0ab63e808e2 100755 (executable)
--- a/git-archimport.perl
+++ b/git-archimport.perl
#
# 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?";
}