Skip to content

Commit

Permalink
Corrected syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Sep 9, 2024
1 parent 476ea4e commit ee94429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/windows/install.dependencies.cmd
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
@echo off

powershell .\install.dependencies.ps1
if %errorlevel% eq 0 goto installGhostscript
if %errorlevel% == 0 goto installGhostscript

echo Failed to install dependencies.
exit /b %errorlevel%

:installGhostscript
..\..\tools\windows\gs1000w32.exe /S
if %errorlevel% eq 0 goto done
if %errorlevel% == 0 goto done

echo Failed to install Ghostscript.
exit /b %errorlevel%
Expand Down

0 comments on commit ee94429

Please sign in to comment.