refactor: rename status_util_ok to status_packer_util_ok

This commit is contained in:
Robson Roberto Souza Peixoto 2023-01-18 09:49:09 -03:00
parent 7881ea0843
commit 0bd31218df
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ local status_ok, packer = pcall(require, "packer")
if not status_ok then
return
end
local status_util_ok, packer_util = pcall(require, "packer.util")
if not status_util_ok then
local status_packer_util_ok, packer_util = pcall(require, "packer.util")
if not status_packer_util_ok then
return
end