mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
(diff): Add -N flag so new files will get created.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1764 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1cbfed198c
commit
800842749b
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,8 @@ echo Making $diff
|
||||||
# Make the diff
|
# Make the diff
|
||||||
echo Diffing...
|
echo Diffing...
|
||||||
rm -f /tmp/$diff
|
rm -f /tmp/$diff
|
||||||
(cd /tmp; diff -u -r ${module}-${secondlastdist} ${module}-${lastdist} > $diff)
|
(cd /tmp; \
|
||||||
|
diff -u -N -r ${module}-${secondlastdist} ${module}-${lastdist} > $diff)
|
||||||
# Remove the dist dirs
|
# Remove the dist dirs
|
||||||
rm -rf /tmp/${module}-${secondlastdist} /tmp/${module}-${lastdist}
|
rm -rf /tmp/${module}-${secondlastdist} /tmp/${module}-${lastdist}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue