File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1080,11 +1080,10 @@ export class InstallManager {
1080
1080
setEnvironmentVariable = false ;
1081
1081
console . log ( colors . yellow ( `WARNING: Environment variable already defined:` ) ) ;
1082
1082
console . log ( ` Name: ${ envVar } ` ) ;
1083
- console . log ( ` Value set on the device : ${ baseEnv [ envVar ] } ` ) ;
1083
+ console . log ( ` Existing value : ${ baseEnv [ envVar ] } ` ) ;
1084
1084
console . log ( ` Value set in rush.json: ${ environmentVariables [ envVar ] . value } ` ) ;
1085
1085
1086
- if ( environmentVariables [ envVar ] . override &&
1087
- environmentVariables [ envVar ] . override === true ) {
1086
+ if ( environmentVariables [ envVar ] . override ) {
1088
1087
setEnvironmentVariable = true ;
1089
1088
console . log ( `Overriding the environment variable with the value set in rush.json.` ) ;
1090
1089
}
You can’t perform that action at this time.
0 commit comments