From f05b909f11d12dfaeafca96a9150fd06e4d479f3 Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Fri, 3 Jun 2016 16:38:38 -0700 Subject: [PATCH] win32: include the restydoc-index tool as well. --- util/package-win32.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/package-win32.sh b/util/package-win32.sh index 9611e47..824b826 100755 --- a/util/package-win32.sh +++ b/util/package-win32.sh @@ -7,12 +7,13 @@ if [ -d $name ]; then rm -rf $name fi mkdir $name || exit 1 -cp -r resty restydoc nginx.exe luajit.exe lua51.dll lua include lualib html conf logs pod $name/ || exit 1 +cp -r resty restydoc restydoc-index nginx.exe luajit.exe lua51.dll lua include lualib html conf logs pod $name/ || exit 1 cp COPYRIGHT $name/ || exit 1 cp /c/MinGW/bin/libgcc_s_dw2-1.dll $name/ || exit 1 cd $name || exit 1 PATH=/c/Strawberry/perl/bin:$PATH cmd /c 'pl2bat.bat resty' || exit 1 PATH=/c/Strawberry/perl/bin:$PATH cmd /c 'pl2bat.bat restydoc' || exit 1 +PATH=/c/Strawberry/perl/bin:$PATH cmd /c 'pl2bat.bat restydoc-index' || exit 1 cp ../README-win32.txt README.txt unix2dos conf/* html/*.html resty || exit 1 cd .. || exit 1