Skip to content

Commit

Permalink
Ignore unknown certificates when installing Windows notifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgay committed Aug 16, 2017
1 parent 76e7f4f commit c37e1d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions send-notification-cli/src/vm/windows/install-notifiers.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo 'Installing Wget'
choco install -y wget

echo 'Installing Notifu'
wget -O %TEMP%\notifu.zip http://www.paralint.com/projects/notifu/dl/notifu-1.7.zip
wget -O %TEMP%\notifu.zip http://www.paralint.com/projects/notifu/dl/notifu-1.7.zip --no-check-certificate
if exist c:\notifu rd /s /q c:\notifu
mkdir c:\notifu
7za x %TEMP%\notifu.zip -oc:\notifu -r
Expand All @@ -28,9 +28,9 @@ mkdir c:\toaster
setx PATH "%PATH%;c:\toaster\toaster-master\toast\bin\Release"

echo 'Installing Snarl'
wget -O %TEMP%\melon.exe http://sourceforge.net/projects/snarlwin/files/Goodies/setup-minimal.exe/download
wget -O %TEMP%\melon.exe http://sourceforge.net/projects/snarlwin/files/Goodies/setup-minimal.exe/download --no-check-certificate
%TEMP%\melon.exe /S
wget -O %TEMP%\snarl.exe http://sourceforge.net/projects/snarlwin/files/latest/download?source=files
wget -O %TEMP%\snarl.exe http://sourceforge.net/projects/snarlwin/files/latest/download?source=files --no-check-certificate

if NOT %ERRORLEVEL% == 0 exit /B %ERRORLEVEL%
%TEMP%\snarl.exe /S
Expand Down

0 comments on commit c37e1d4

Please sign in to comment.