File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import { OpenShiftItem } from './openshiftItem';
77import { OpenShiftObject , Command } from '../odo' ;
88import { window } from 'vscode' ;
99import { Progress } from '../util/progress' ;
10+ import { Platform } from '../util/platform' ;
1011
1112export class Service extends OpenShiftItem {
1213
@@ -78,7 +79,7 @@ export class Service extends OpenShiftItem {
7879 if ( service ) {
7980 const template = await Service . getTemplate ( service ) ;
8081 if ( template ) {
81- Service . odo . executeInTerminal ( Command . describeService ( template ) ) ;
82+ Service . odo . executeInTerminal ( Command . describeService ( template ) , Platform . getUserHomePath ( ) ) ;
8283 } else {
8384 throw Error ( `Cannot get Service Type name for Service \'${ service . getName ( ) } \'` ) ;
8485 }
You can’t perform that action at this time.
0 commit comments