mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
ADD: Show help when run without arguments
This commit is contained in:
parent
fecb4c434d
commit
faf2910249
1 changed files with 10 additions and 0 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue