diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-07-04 10:37:20 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-07-04 10:37:20 -0700 |
commit | 7e584dade01d748fad64f59425f5c1f900ee605f (patch) | |
tree | 5bee55064b586aab00a0f05914b9915e55d9c49b | |
parent | 1de55ecbbdc694cc853ae707b8a1f7d65af9eefd (diff) | |
download | pandoc-7e584dade01d748fad64f59425f5c1f900ee605f.tar.gz |
make-windows-installer.bat: Removed explicit paths for executables.
-rw-r--r-- | windows/make-windows-installer.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat index e13d324c7..12d873b70 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -24,9 +24,9 @@ if "%VERSION%" == "" ( echo Detected version %VERSION%
cd windows
echo Creating msi...
-"C:\Program Files\WiX Toolset v3.7\bin\candle.exe" -dVERSION=%VERSION% pandoc.wxs
+candle -dVERSION=%VERSION% pandoc.wxs
if %errorlevel% neq 0 exit /b %errorlevel%
-"C:\Program Files\WiX Toolset v3.7\bin\light.exe" -sw1076 -ext WixUIExtension -out pandoc-%VERSION%.msi pandoc.wixobj
+light -sw1076 -ext WixUIExtension -out pandoc-%VERSION%.msi pandoc.wixobj
if %errorlevel% neq 0 exit /b %errorlevel%
echo Starting kSign: sign, then quit kSign to complete the build...
-"C:\Program Files\kSign\kSign.exe"
+kSign
|