We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d6921e commit e3d474bCopy full SHA for e3d474b
1 file changed
browser/pages/start/controller.js
@@ -34,7 +34,11 @@ class StartController {
34
35
launchDevstudio_darwin() {
36
let devStudioAppPath = path.join(this.installerDataSvc.jbdsDir(), 'Devstudio.app');
37
- Util.executeCommand(`open ${devStudioAppPath}`,1).then(()=>{
+ let options = {
38
+ env : Object.assign({},Platform.ENV)
39
+ };
40
+ options.env['rhel.subscription.password'] = this.installerDataSvc.password;
41
+ Util.executeCommand(`open ${devStudioAppPath}`, 1, options).then(()=>{
42
Logger.info('devstudio started sucessfully');
43
this.exit();
44
}).catch((error)=>{
0 commit comments