Skip to content

Commit

Permalink
fix #22; Unable to add package from url on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mob-sakai committed Feb 22, 2019
1 parent c3dc700 commit 0bc1018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/Scripts/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static WaitWhile GetRefs (string repoUrl, List<string> result, Action cal
if (success)
{
foreach (Match m in Regex.Matches (output, "refs/(tags|heads)/(.*)$", RegexOptions.Multiline))
result.Add (m.Groups [2].Value);
result.Add (m.Groups [2].Value.Trim());
}
callback ();
});
Expand Down

0 comments on commit 0bc1018

Please sign in to comment.