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