Skip to content

Commit c31c8a7

Browse files
committed
Rename README files to consistent state
1 parent 0a33f44 commit c31c8a7

File tree

110 files changed

+7
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+7
-7
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: mklist

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@
22

33
# Generate the included table for the master README file
44

5-
README_1LINE_FILE=README.1line.txt
5+
README_FILE=README.txt
66
FNAME_STATUS=STATUS.1line.txt
77

88
for d in [A-Z]*
99
do
1010
if [ -d $d ]; then
1111
BUILDS_WITH=""
12-
if [ -f $d/${README_1LINE_FILE} ]; then
13-
FUNCTION=$(cat $d/${README_1LINE_FILE})
12+
if [ -f $d/${README_FILE} ]; then
13+
FUNCTION=$(cat $d/${README_FILE})
1414
if [ -f $d/${FNAME_STATUS} ]; then
15-
NOTES=$(cat $d/${FNAME_STATUS})
15+
NOTES=$(cat $d/${FNAME_STATUS} | sed 1q)
1616
else
1717
NOTES="-"
1818
fi
1919
if [ -f $d/.project ]; then BUILDS_WITH+=E; fi
20-
if [ -f $d/pom.xml ]; then BUILDS_WITH+=M; else echo >&2 "$d has no POM"; fi
21-
grep -q $d pom.xml || echo >&2 "$d not in master POM"
20+
if [ -f $d/pom.xml ]; then BUILDS_WITH+=M; fi
2221
if [ -f $d/build.gradle -o -f $d/app/build.gradle ]; then BUILDS_WITH+=G; fi
2322
if [ -f $d/$d.iml -o -f $d/app/$d.iml ]; then BUILDS_WITH+=S; fi
23+
if [ -s "$BUILDS_WITH" ]; then echo "$d has no build files!"; fi
2424
echo '|' "link:https://github.com/IanDarwin/Android-Cookbook-Examples/tree/master/$d[$d]" '|' $BUILDS_WITH '|' $FUNCTION '|' ${NOTES}
2525
else
26-
echo >&2 "$d has no ${README_1LINE_FILE}"
26+
echo >&2 "$d has no README file"
2727
fi
2828
fi
2929
done |

0 commit comments

Comments
 (0)