Skip to content

Commit

Permalink
Fixed error string quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
nimaid committed Nov 28, 2019
1 parent e2caa5c commit 9386ebe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b0.1.4
0.1.5
4 changes: 1 addition & 3 deletions install/windows/windows.iss
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,12 @@
AppId={{A6E030E7-C7D0-4EA7-BBD9-4AD52745451B}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
; Remove the following line to run in administrative install mode (install for all users.)
PrivilegesRequired=lowest
OutputDir=..\__setup__
OutputBaseFilename=LPHK_setup_{#MyAppVersion}
Expand Down Expand Up @@ -109,7 +107,7 @@ begin
begin
Exec(ExpandConstant('{app}\uninstall_env_windows.bat'), '', '', SW_HIDE, ewWaitUntilTerminated, ResultCode)
if ResultCode <> 0 then begin
MsgBox('Could not uninstall Conda environment. You can manually remove it with \"conda env remove -n LPHK\".',mbError,MB_OK)
MsgBox('Could not uninstall Conda environment. You can manually remove it with "conda env remove -n LPHK".',mbError,MB_OK)
end;
end;
end;
Expand Down

0 comments on commit 9386ebe

Please sign in to comment.