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 edbeb5e commit 5e10555Copy full SHA for 5e10555
mbed/mbed.py
@@ -1575,6 +1575,10 @@ def get_env(self):
1575
for c in compilers:
1576
if self.get_cfg(c+'_PATH'):
1577
env['MBED_'+c+'_PATH'] = self.get_cfg(c+'_PATH')
1578
+ config_options = ['COLOR', 'CLOUD_SDK_API_KEY', 'CLOUD_SDK_HOST']
1579
+ for opt in config_options:
1580
+ if self.get_cfg(opt):
1581
+ env['MBED_' + opt] = self.get_cfg(opt)
1582
1583
return env
1584
0 commit comments