From cf177a490daf43ce108a3c01a28de1169ef93eb8 Mon Sep 17 00:00:00 2001 From: Eugene Lazurin Date: Tue, 17 Oct 2023 16:29:50 +0200 Subject: [PATCH] [rdct] launcher: GTW-2941 Add `help` if run command is not specified GitOrigin-RevId: 895a4e3a97dd0e4c9584516e44477190cb6542fb --- native/XPlatLauncher/src/remote_dev.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/native/XPlatLauncher/src/remote_dev.rs b/native/XPlatLauncher/src/remote_dev.rs index 5bbd2d81d37f..9d21bf14efca 100644 --- a/native/XPlatLauncher/src/remote_dev.rs +++ b/native/XPlatLauncher/src/remote_dev.rs @@ -167,6 +167,7 @@ impl RemoteDevLaunchConfiguration { debug!("Parsing remote dev command-line arguments"); if args.len() < 2 { + print_help(); bail!("Starter command is not specified") }