Skip to content

Commit

Permalink
Fix eslit errors
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Golovin [email protected]
  • Loading branch information
dgolovin committed Mar 23, 2023
1 parent 00cdfa0 commit 97f23a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openshift/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export class Component extends OpenShiftItem {
onDidWrite: outputEmitter.event,
open: () => {
outputEmitter.fire(`Starting ${Command.dev(component.component.devfileData.supportedOdoFeatures.debug).toString()}\r\n`);
let opt: SpawnOptions = {cwd: component.contextPath};
const opt: SpawnOptions = {cwd: component.contextPath};
void CliChannel.getInstance().spawnTool(Command.dev(component.component.devfileData.supportedOdoFeatures.debug, runOn), opt).then((cp) => {
devProcess = cp;
devProcess.on('spawn', () => {
Expand Down

0 comments on commit 97f23a5

Please sign in to comment.