26 lines
507 B
Bash
26 lines
507 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [[ ! -f $(basename "${0}") || ! -d "../scripts" ]];
|
||
|
|
then
|
||
|
|
echo "Error - run this script from the tools/scripts dir."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
DISTFILE=tools/dist.conf/distExcludes.txt
|
||
|
|
cd ../..
|
||
|
|
> "${DISTFILE}"
|
||
|
|
for item in $(git ls-files -o);
|
||
|
|
do
|
||
|
|
if [[ "${item}" == "tools/java/cldr.jar" ]]; # allow this
|
||
|
|
then
|
||
|
|
true
|
||
|
|
elif [[ -d "${item}" ]];
|
||
|
|
then
|
||
|
|
echo "${item}/" >> "${DISTFILE}"
|
||
|
|
else
|
||
|
|
echo "${item}" >> "${DISTFILE}"
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
|
||
|
|
echo "# updated ${DISTFILE}"
|