Skip to content

Commit 181a848

Browse files
committed
fix: misidentified as a trojan
1 parent b1bf871 commit 181a848

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inno_setup/environment.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ begin
1212
{ Skip if string already found in path }
1313
if Pos(';' + Uppercase(Path) + ';', ';' + Uppercase(Paths) + ';') > 0 then exit;
1414
15-
{ App string to the end of the path variable }
16-
Paths := Paths + ';'+ Path +';'
15+
{ Append string to the end of the path variable }
16+
Paths := Paths + ';' + Path;
1717
1818
{ Overwrite (or create if missing) path environment variable }
1919
if RegWriteStringValue(HKEY_LOCAL_MACHINE, EnvironmentKey, 'Path', Paths)

0 commit comments

Comments
 (0)