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 d892577 commit 722da7cCopy full SHA for 722da7c
bin/helpers/utils.js
@@ -278,7 +278,7 @@ exports.setTestEnvs = (bsConfig, args) => {
278
let argsEnvVars = this.fixCommaSeparatedString(args.env).split(',');
279
argsEnvVars.forEach((envVar) => {
280
let env = envVar.split("=");
281
- envKeys[env[0]] = env[1];
+ envKeys[env[0]] = env.slice(1,).join('=');
282
});
283
}
284
0 commit comments