We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6707a1e commit 485cd73Copy full SHA for 485cd73
apps/rush-lib/src/logic/InstallManager.ts
@@ -1080,11 +1080,10 @@ export class InstallManager {
1080
setEnvironmentVariable = false;
1081
console.log(colors.yellow(`WARNING: Environment variable already defined:`));
1082
console.log(` Name: ${envVar}`);
1083
- console.log(` Value set on the device: ${baseEnv[envVar]}`);
+ console.log(` Existing value: ${baseEnv[envVar]}`);
1084
console.log(` Value set in rush.json: ${environmentVariables[envVar].value}`);
1085
1086
- if (environmentVariables[envVar].override &&
1087
- environmentVariables[envVar].override === true) {
+ if (environmentVariables[envVar].override) {
1088
setEnvironmentVariable = true;
1089
console.log(`Overriding the environment variable with the value set in rush.json.`);
1090
}
0 commit comments