Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 9956365

Browse files
committed
Minor scrubbing
1 parent 870d1ab commit 9956365

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ElixirWeb.iss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ end;
229229
function CheckToInstallErlang: Boolean; begin
230230
// Erlang should be installed if there's no Erlang path in the registry
231231
Result := (GetLatestErlangPath = ''); end;
232+
232233
function CheckToAddExistingErlangPath: Boolean; begin
233234
// We shouldn't add an existing Erlang path if it's already in Path or it isn't installed at all
234235
Result := not (CheckToInstallErlang or ErlangInPath); end;

src/util.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ end;
7575
// Given two software version strings (ex. '1.5.0'), returns:
7676
// 1 if the second version is later than the first
7777
// -1 if the second version is earlier than the first
78-
// 0 if equivalent (
78+
// 0 if equivalent
7979
function CompareVersions(VerL, VerR: String): Integer;
8080
var
8181
VerLExplode: TStrings;

0 commit comments

Comments
 (0)