From 403922b1b47c1f03272e2bdd600dcc02db481389 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 1 Mar 2019 01:48:21 +0100 Subject: test: fix isCI() for Quickbuild --- test/helpers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/helpers.lua b/test/helpers.lua index 7c3654680a..9f998ef919 100644 --- a/test/helpers.lua +++ b/test/helpers.lua @@ -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 -- cgit