Skip to content

Commit

Permalink
[build] Fix build errors after update typescript-eslint group to v.8.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Rubezhny <[email protected]>
  • Loading branch information
vrubezhny committed Sep 9, 2024
1 parent d15e0ca commit 5a73dff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/odo/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class Command {
return command;
}

static dev(debug: boolean, runOn?: undefined | 'podman', manualRebuild: boolean = false): CommandText {
static dev(debug: boolean, runOn?: 'podman', manualRebuild: boolean = false): CommandText {
const command = new CommandText('odo', 'dev');
if (debug) {
command.addOption(new CommandOption('--debug'));
Expand Down
2 changes: 1 addition & 1 deletion src/openshift/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export class Component extends OpenShiftItem {
await Component.devRunOn(component, undefined, true);
}

static async devRunOn(component: ComponentWorkspaceFolder, runOn?: undefined | 'podman', manualRebuild: boolean = false) {
static async devRunOn(component: ComponentWorkspaceFolder, runOn?: 'podman', manualRebuild: boolean = false) {
const cs = Component.getComponentDevState(component);
cs.devStatus = ComponentContextState.DEV_STARTING;
cs.runOn = runOn;
Expand Down

0 comments on commit 5a73dff

Please sign in to comment.