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

Commit 833acff

Browse files
Merge pull request #818 from github-for-unity/fixes/fix-checking-version-of-octorun-doh
Fix octorun version check sigh
2 parents ceabe35 + 39f334e commit 833acff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/Installer/OctorunInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private bool IsOctorunExtracted()
7171
return false;
7272
}
7373

74-
var octorunVersion = installDetails.VersionFile.ReadAllText();
74+
var octorunVersion = installDetails.VersionFile.ReadAllText().Trim();
7575
if (!OctorunInstallDetails.PackageVersion.Equals(octorunVersion))
7676
{
7777
Logger.Warning("Current version {0} does not match expected {1}", octorunVersion, OctorunInstallDetails.PackageVersion);

0 commit comments

Comments
 (0)