projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5744f27
)
archimport: remove git wrapper dependency
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>
git-archimport.perl
patch
|
blob
|
history
diff --git
a/git-archimport.perl
b/git-archimport.perl
index
2ed2e3c
..
938fa2b
100755
(executable)
--- 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?";
}