From 9c9e026061966d3ae7d4f37fa7a2cd22a315c5e4 Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Fri, 16 Mar 2018 16:25:18 +0200 Subject: [PATCH] refactor: rename skipenv variable Rename the generic `SKIP_ENV_CHECK` to `NS_SKIP_ENV_CHECK` in order to mitigate any potential clashes with other tools. --- lib/services/platform-environment-requirements.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/platform-environment-requirements.ts b/lib/services/platform-environment-requirements.ts index 15a387a710..0ae315c8dd 100644 --- a/lib/services/platform-environment-requirements.ts +++ b/lib/services/platform-environment-requirements.ts @@ -25,7 +25,7 @@ export class PlatformEnvironmentRequirements implements IPlatformEnvironmentRequ }; public async checkEnvironmentRequirements(platform: string): Promise { - if (process.env.SKIP_ENV_CHECK) { + if (process.env.NS_SKIP_ENV_CHECK) { return true; }