upstream: 8:df8ab86066ea [preparations for 0.79.9 rollout]

This commit is contained in:
Stéphane Lesimple
2021-10-03 17:18:20 +02:00
parent 90b5ab6443
commit a8eb4acf08
4 changed files with 15 additions and 4 deletions

View File

@@ -24,6 +24,9 @@ echo
ADDED=0
echo "Files and dirs ADDED in this distribution:"
for i in $(find .); do
if test "${i:0:9}" == "./PRIVATE";
then continue;
fi
if test -d $i && ! test -e $ref/$i; then
ADDED=$((ADDED+1))
echo " Dir : $i"
@@ -45,6 +48,9 @@ REMOVED=0
echo
echo "Files and dirs REMOVED in this distribution:"
for i in $(find .); do
if test "${i:0:5}" == "./.hg";
then continue;
fi
if test -d $i && ! test -e $new/$i; then
REMOVED=$((REMOVED+1))
echo " Dir : $i"