mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
test: fix isCI() for Quickbuild
This commit is contained in:
parent
67535b5940
commit
403922b1b4
@ -708,7 +708,7 @@ end
|
||||
local function isCI()
|
||||
local is_travis = nil ~= os.getenv('TRAVIS')
|
||||
local is_appveyor = nil ~= os.getenv('APPVEYOR')
|
||||
local is_quickbuild = nil ~= os.getenv('PR_NUMBER')
|
||||
local is_quickbuild = nil ~= lfs.attributes('/usr/home/quickbuild')
|
||||
return is_travis or is_appveyor or is_quickbuild
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user