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 3efc6ed commit c5cc93bCopy full SHA for c5cc93b
bin/helpers/capabilityHelper.js
@@ -34,8 +34,9 @@ const caps = (bsConfig, zip) => {
34
logger.log(`Local is set to: ${obj.local}`);
35
36
// Local Identifier
37
- obj.localIdentifier = bsConfig.connection_settings.localIdentifier;
38
- if (obj.localIdentifier) logger.log(`Local Identifier is set to: ${obj.localIdentifier}`);
+ obj.localIdentifier = null;
+ if (bsConfig.connection_settings.localIdentifier) obj.localIdentifier = bsConfig.connection_settings.localIdentifier;
39
+ logger.log(`Local Identifier is set to: ${obj.localIdentifier}`);
40
41
// Project name
42
obj.project = bsConfig.run_settings.project
0 commit comments