1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

tag.IsEmpty fix

This commit is contained in:
Brian Fiete 2024-10-21 16:41:22 -04:00
parent 1dc6c903ee
commit b77a80db2c

View file

@ -218,7 +218,7 @@ class GitManager
if ((line.Length == 45) && (line.EndsWith("HEAD")))
tag = "HEAD";
if (!tag.IsEmpty)
if (tag.IsEmpty)
continue;
StringView hash = line.Substring(0, 40);