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:
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")))
|
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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue