Skip to content
This repository has been archived by the owner on May 19, 2021. It is now read-only.

Commit

Permalink
fix version detector crash fixes #64
Browse files Browse the repository at this point in the history
  • Loading branch information
unitycoder committed May 31, 2018
1 parent 66a4231 commit 87e7ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnityLauncher/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public static string GetProjectVersion(string path)
{
// in text format, then we need to try library file instead
var newVersionPath = Path.Combine(path, "Library", "AnnotationManager");
if (File.Exists(versionPath) == true)
if (File.Exists(newVersionPath) == true)
{
versionPath = newVersionPath;
}
Expand Down

0 comments on commit 87e7ad7

Please sign in to comment.