Skip to content

Commit 97f23a5

Browse files
committed
Fix eslit errors
Signed-off-by: Denis Golovin dgolovin@redhat.com
1 parent 00cdfa0 commit 97f23a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openshift/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export class Component extends OpenShiftItem {
216216
onDidWrite: outputEmitter.event,
217217
open: () => {
218218
outputEmitter.fire(`Starting ${Command.dev(component.component.devfileData.supportedOdoFeatures.debug).toString()}\r\n`);
219-
let opt: SpawnOptions = {cwd: component.contextPath};
219+
const opt: SpawnOptions = {cwd: component.contextPath};
220220
void CliChannel.getInstance().spawnTool(Command.dev(component.component.devfileData.supportedOdoFeatures.debug, runOn), opt).then((cp) => {
221221
devProcess = cp;
222222
devProcess.on('spawn', () => {

0 commit comments

Comments
 (0)