summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2017-05-01 17:19:04 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2017-05-01 17:19:04 -0400
commit2a20b5124546cafc5fe686b1af0223642d43a94a (patch)
treefb78d925bfad9e8238cdc35c77df15057eb8441a /tools
parent0d7cb94a77d71670daa0afd14eb2cfb2519fe040 (diff)
downloadcups-2a20b5124546cafc5fe686b1af0223642d43a94a.tar.gz
Rename README, INSTALL, CHANGES, and CREDITS files to .md (markdown).
Diffstat (limited to 'tools')
-rwxr-xr-xtools/makesrcdist6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/makesrcdist b/tools/makesrcdist
index e684fe89e..ac7ce7a67 100755
--- a/tools/makesrcdist
+++ b/tools/makesrcdist
@@ -59,19 +59,19 @@ else
exit 1
fi
- temp=`head -1 README.txt | awk '{print $4}'`
+ temp=`head -1 README.md | awk '{print $4}'`
if test "$temp" != "v$version"; then
echo "Still need to update version to v$version in README.txt (saw $temp)"
exit 1
fi
- temp=`head -1 INSTALL.txt | awk '{print $4}'`
+ temp=`head -1 INSTALL.md | awk '{print $4}'`
if test "$temp" != "v$version"; then
echo "Still need to update version to v$version in INSTALL.txt (saw $temp)"
exit 1
fi
- temp=`head -4 CHANGES.txt | grep "CHANGES IN" | awk '{print $4}'`
+ temp=`head -4 CHANGES.md | grep "CHANGES IN" | awk '{print $4}'`
if test "$temp" != "V$version"; then
echo "Still need to add CHANGES IN V$version in CHANGES.txt (saw $temp)"
exit 1