mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 23:59:43 +01:00
cli: allow exec server to listen on socket (#188123)
* cli: allow exec server to listen on socket For remote ssh * fix lint
This commit is contained in:
@@ -95,7 +95,9 @@ async fn main() -> Result<(), std::convert::Infallible> {
|
||||
args::VersionSubcommand::Show => version::show(context!()).await,
|
||||
},
|
||||
|
||||
Some(args::Commands::CommandShell) => tunnels::command_shell(context!()).await,
|
||||
Some(args::Commands::CommandShell(cs_args)) => {
|
||||
tunnels::command_shell(context!(), cs_args).await
|
||||
}
|
||||
|
||||
Some(args::Commands::Tunnel(tunnel_args)) => match tunnel_args.subcommand {
|
||||
Some(args::TunnelSubcommand::Prune) => tunnels::prune(context!()).await,
|
||||
|
||||
Reference in New Issue
Block a user