ADD: Show help when run without arguments

This commit is contained in:
Alexander Koblov 2015-08-11 18:46:32 +00:00
commit faf2910249

View file

@ -1,6 +1,16 @@
@echo off
rem This script converts portable *.zip package to *.msi package
rem Check command arguments
if "%1" == "" (
echo.
echo Syntax:
echo.
echo %~nx0 ^<Full path to portable .zip package^>
goto :eof
)
rem Path to Windows Installer XML (WiX) toolset
set PATH=%PATH%;"C:\Program Files (x86)\WiX Toolset v3.9\bin"