1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +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"))) if ((line.Length == 45) && (line.EndsWith("HEAD")))
tag = "HEAD"; tag = "HEAD";
if (!tag.IsEmpty) if (tag.IsEmpty)
continue; continue;
StringView hash = line.Substring(0, 40); StringView hash = line.Substring(0, 40);