diff options
-rw-r--r-- | pass.bat | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ @echo off
where gpg.exe >nul 2>nul
-IF NOT ERRORLEVEL 0 (
+IF NOT %ERRORLEVEL% EQU 0 (
echo GPG isn't installed. Exiting...
exit 1
)
|
index : pass.bat | ||
passwordstore.org 'pass' utility partially ported to Windows NT. | Miquel Lionel |
aboutsummaryrefslogtreecommitdiff |
-rw-r--r-- | pass.bat | 2 |
@@ -1,7 +1,7 @@ @echo off
where gpg.exe >nul 2>nul
-IF NOT ERRORLEVEL 0 (
+IF NOT %ERRORLEVEL% EQU 0 (
echo GPG isn't installed. Exiting...
exit 1
)
|