From 792fc54fa77172ac2909d3cac4c9163497cb790b Mon Sep 17 00:00:00 2001 From: Daniel James Smith Date: Thu, 1 Apr 2021 22:35:42 +0200 Subject: [PATCH] Removed Appveyor from BuildNumberGenerator --- gulpfile.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 409ad5687d..a5e3228818 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -34,9 +34,7 @@ const filters = { function buildString() { var build = ''; - if (process.env.APPVEYOR_BUILD_NUMBER && process.env.APPVEYOR_BUILD_NUMBER !== '') { - build = `-${process.env.APPVEYOR_BUILD_NUMBER}`; - } else if (process.env.BUILD_NUMBER && process.env.BUILD_NUMBER !== '') { + if (process.env.BUILD_NUMBER && process.env.BUILD_NUMBER !== '') { build = `-${process.env.BUILD_NUMBER}`; } return build;