We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5123c commit 3a1c5ebCopy full SHA for 3a1c5eb
nginx-build-msys2.sh
@@ -109,8 +109,12 @@ make -f docs/GNUmakefile changes
109
mv -f tmp/*/CHANGES* ../docs/
110
111
# copy docs and licenses
112
-cp -f docs/text/LICENSE ../docs/
113
-cp -f docs/text/README ../docs/
+cp -f docs/text/LICENSE ../docs/ || cp -f LICENSE ../docs/
+cp -f docs/text/README ../docs/ || cp -f README.md ../docs/
114
+if [[ -d docs/html ]]; then
115
+ mkdir -p ../html
116
+ cp -f docs/html/* ../html/
117
+fi
118
cp -pf "${OPENSSL}/LICENSE.txt" '../docs/OpenSSL.LICENSE'
119
cp -pf "${WITH_PCRE}/LICENCE" '../docs/PCRE.LICENCE'
120
sed -ne '/^ (C) 1995-20/,/^ jloup@gzip\.org/p' "${ZLIB}/README" > '../docs/zlib.LICENSE'
0 commit comments