Permalink
Browse files

Give INSTALL and LICENSE a .txt extension.

This is more consistent, and also prevents the INSTALL doc from
conflicting with the install script on case-insensitive file systems (OS
X).
  • Loading branch information...
Andy Chu
Andy Chu committed Aug 8, 2017
1 parent d422565 commit 981001a8287ea581f7636237e213c14f91aa426c
Showing with 6 additions and 6 deletions.
  1. 0 INSTALL → INSTALL.txt
  2. 0 LICENSE → LICENSE.txt
  3. +2 −2 README.md
  4. +2 −2 build/compile.sh
  5. +2 −2 build/doc.sh
View
File renamed without changes.
View
File renamed without changes.
View
@@ -101,8 +101,8 @@ Directory Structure
# End user docs
LICENSE
INSTALL
LICENSE.txt
INSTALL.txt
# End user build system
View
@@ -324,8 +324,8 @@ make-tar() {
local sed_expr="s,^,${app_name}-${version}/,"
tar --create --transform "$sed_expr" --file $out \
LICENSE \
INSTALL \
LICENSE.txt \
INSTALL.txt \
configure \
install \
Makefile \
View
@@ -158,7 +158,7 @@ EOF
readonly MONOSPACE='font-family: monospace;'
install() {
markdown2html INSTALL _build/doc/INSTALL.html "$MONOSPACE"
markdown2html INSTALL.txt _build/doc/INSTALL.html "$MONOSPACE"
}
index() {
@@ -173,7 +173,7 @@ _sed-ext() {
update-src-versions() {
_sed-ext "s/Version [0-9]+.[0-9]+.[0-9]+/Version $OIL_VERSION/g" doc/index.md
_sed-ext "s/oil-[0-9]+.[0-9]+.[0-9]+/oil-$OIL_VERSION/g" INSTALL
_sed-ext "s/oil-[0-9]+.[0-9]+.[0-9]+/oil-$OIL_VERSION/g" INSTALL.txt
}
"$@"

0 comments on commit 981001a

Please sign in to comment.