diff options
| author | Ryan Despain <[email protected]> | 2022-01-05 01:33:53 -0700 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-05 09:33:53 +0100 | 
| commit | 8233522e0b9b026c5ece9e420c4d9642f5a0c889 (patch) | |
| tree | 765cb8860399cfebee1fffd753e79396e0d0aea6 | |
| parent | 3f40828d1d8b2ec2c26ccd34b9ecc7694eb4f570 (diff) | |
fix: remove "error" message from git tag (#2141)
| -rw-r--r-- | lua/lvim/utils/git.lua | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/lua/lvim/utils/git.lua b/lua/lvim/utils/git.lua index 73ba7c96..c0a67bf0 100644 --- a/lua/lvim/utils/git.lua +++ b/lua/lvim/utils/git.lua @@ -106,7 +106,6 @@ function M.get_lvim_tag(type)    local lvim_full_ver = results[1] or ""    if ret ~= 0 or string.match(lvim_full_ver, "%d") == nil then -    Log:error "Unable to retrieve current tag. Check the log for further information"      return nil    end    if type == "short" then | 
