From 5daf912cca6976242e95700d833e2b67e1969627 Mon Sep 17 00:00:00 2001 From: Denis Golovin Date: Fri, 27 Jan 2023 11:52:19 -0800 Subject: [PATCH] Use --platform instead of --run-on in Start Dev on Podman Fix #2755. Signed-off-by: Denis Golovin dgolovin@redhat.com --- src/odo/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/odo/command.ts b/src/odo/command.ts index f82830b06..4e893fcee 100644 --- a/src/odo/command.ts +++ b/src/odo/command.ts @@ -38,7 +38,7 @@ export class Command { command.addOption(new CommandOption('--debug')); } if (runOn) { - command.addOption(new CommandOption('--run-on', 'podman')); + command.addOption(new CommandOption('--platform', 'podman')); } return command; }