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:
parent
1dc6c903ee
commit
b77a80db2c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue