We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f7612 commit ac81aa7Copy full SHA for ac81aa7
src/openshift/component.ts
@@ -216,7 +216,7 @@ export class Component extends OpenShiftItem {
216
onDidWrite: outputEmitter.event,
217
open: () => {
218
outputEmitter.fire(`Starting ${Command.dev(component.component.devfileData.supportedOdoFeatures.debug).toString()}\r\n`);
219
- let opt: SpawnOptions = {cwd: component.contextPath};
+ const opt: SpawnOptions = {cwd: component.contextPath};
220
void CliChannel.getInstance().spawnTool(Command.dev(component.component.devfileData.supportedOdoFeatures.debug, runOn), opt).then((cp) => {
221
devProcess = cp;
222
devProcess.on('spawn', () => {
0 commit comments