Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Fixed: check if Docker folder is already on PATH in windows installer (
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranciszkiewicz authored Apr 19, 2017
1 parent 924b469 commit 4f8a233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Installer/Installer_Win/install_script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SolidCompression=yes
Root: "HKLM64"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: string; ValueName: "GOLEM"; ValueData: "{app}\golemapp.exe"; Flags: uninsdeletevalue;

; Append Docker to PATH
Root: "HKLM64"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "PATH"; ValueData: "{olddata};{sd}\Program Files\Docker Toolbox";
Root: "HKLM64"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "PATH"; ValueData: "{olddata};{sd}\Program Files\Docker Toolbox"; Check: NeedsAddPath('{sd}\Program Files\Docker Toolbox')

; Add OpenSSL to the PATH
Root: "HKLM64"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "PATH"; ValueData: "{olddata};{sd}\OpenSSL"; Check: NeedsAddPath('{sd}\OpenSSL')
Expand Down

0 comments on commit 4f8a233

Please sign in to comment.