-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommitify.iss
More file actions
25 lines (21 loc) · 882 Bytes
/
Commitify.iss
File metadata and controls
25 lines (21 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[Setup]
AppName=Commitify
AppVersion=1.0
DefaultDirName={pf}\Commitify
DefaultGroupName=Commitify
OutputBaseFilename=CommitifyInstaller
ArchitecturesInstallIn64BitMode=x64
Compression=lzma
SolidCompression=yes
[Files]
Source: "CommitifyInstaller\Commitify.exe"; DestDir: "{app}"; Flags: ignoreversion
[Icons]
Name: "{commondesktop}\Commitify"; Filename: "{app}\Commitify.exe"
Name: "{group}\Commitify"; Filename: "{app}\Commitify.exe"
[Registry]
; Add Commitify to the system PATH (for all users)
Root: HKLM; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; \
ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}"; Flags: preservestringtype
[Run]
; Optionally, you can force a reload of the PATH variable for running processes
Filename: "{cmd}"; Parameters: "/C setx /M PATH ""%PATH%;{app}"""; Flags: runhidden