diff --git a/src/Squirrel/ReleaseEntry.cs b/src/Squirrel/ReleaseEntry.cs index 277947f6e..6d0e80927 100644 --- a/src/Squirrel/ReleaseEntry.cs +++ b/src/Squirrel/ReleaseEntry.cs @@ -92,7 +92,7 @@ public Uri GetIconUrl(string packageDirectory) return zp.IconUrl; } - static readonly Regex entryRegex = new Regex(@"^([0-9a-fA-F]{40})\s+(\S+)\s+(\d+)[\r]*$"); + static readonly Regex entryRegex = new Regex(@"^([0-9a-fA-F]{40})\s+(.+)\s+(\d+)[\r]*$"); static readonly Regex commentRegex = new Regex(@"\s*#.*$"); static readonly Regex stagingRegex = new Regex(@"#\s+(\d{1,3})%$"); public static ReleaseEntry ParseReleaseEntry(string entry)