Include README.md in dist packages

Signed-off-by: Samuli Seppänen <samuli@openvpn.net>
This commit is contained in:
Samuli Seppänen 2016-11-16 17:14:21 +02:00
parent 5ec9af2676
commit 6ba06da8da

View File

@ -67,7 +67,7 @@ stage_unix() {
mkdir -p "$DIST_ROOT/unix/$PV" mkdir -p "$DIST_ROOT/unix/$PV"
# Copy files into $PV, starting with easyrsa3 as the initial root dir # Copy files into $PV, starting with easyrsa3 as the initial root dir
src_files="easyrsa3/ Licensing/ COPYING.md ChangeLog README.quickstart.md" src_files="easyrsa3/ Licensing/ COPYING.md ChangeLog README.md README.quickstart.md"
for f in $src_files for f in $src_files
do do
cp -a "$SRC_ROOT/$f" "$DIST_ROOT/unix/$PV" || die "failed to copy $f" cp -a "$SRC_ROOT/$f" "$DIST_ROOT/unix/$PV" || die "failed to copy $f"
@ -92,7 +92,7 @@ stage_win() {
python -m markdown $f > $DIST_ROOT/windows/$PV/doc/$fname.html python -m markdown $f > $DIST_ROOT/windows/$PV/doc/$fname.html
done done
for f in "README.quickstart" "COPYING" for f in "README" "README.quickstart" "COPYING"
do do
python -m markdown $SRC_ROOT/$f.md > $DIST_ROOT/windows/$PV/$f.html python -m markdown $SRC_ROOT/$f.md > $DIST_ROOT/windows/$PV/$f.html
done done