mirror of
https://github.com/neovim/neovim.git
synced 2025-10-22 17:11:49 +00:00
test: fix isCI() for Quickbuild
This commit is contained in:
@@ -708,7 +708,7 @@ end
|
|||||||
local function isCI()
|
local function isCI()
|
||||||
local is_travis = nil ~= os.getenv('TRAVIS')
|
local is_travis = nil ~= os.getenv('TRAVIS')
|
||||||
local is_appveyor = nil ~= os.getenv('APPVEYOR')
|
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
|
return is_travis or is_appveyor or is_quickbuild
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user