mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
git/export: don't try to diff dirs
This commit is contained in:
parent
8e301036fa
commit
d8973bdc75
1 changed files with 2 additions and 2 deletions
|
@ -66,10 +66,10 @@ for(c in $commits){
|
|||
echo diff `{basename $pp} `{basename $cp}
|
||||
for(f in $fc){
|
||||
a=a/$f
|
||||
if(! test -e $a)
|
||||
if(! test -f $a)
|
||||
a=/dev/null
|
||||
b=b/$f
|
||||
if(! test -e $b)
|
||||
if(! test -f $b)
|
||||
b=/dev/null
|
||||
diff -ur $a $b
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue