mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-07 07:16:41 +01:00
cli: update dependencies (#184189)
Up all the dependencies! Notably: - russh to the latest main now that tunnel changes are merged - secret-service-rs to 3.x and dropping our custom fork - which also fixes SDL pings Fixes https://github.com/microsoft/vscode-internalbacklog/issues/4328 Fixes https://github.com/microsoft/vscode-internalbacklog/issues/4077
This commit is contained in:
@@ -29,12 +29,12 @@ pub fn try_parse_legacy(
|
||||
match args.get_mut(long) {
|
||||
Some(prev) => {
|
||||
if let Some(v) = value {
|
||||
prev.push(v.to_str_lossy().to_string());
|
||||
prev.push(v.to_string_lossy().to_string());
|
||||
}
|
||||
}
|
||||
None => {
|
||||
if let Some(v) = value {
|
||||
args.insert(long.to_string(), vec![v.to_str_lossy().to_string()]);
|
||||
args.insert(long.to_string(), vec![v.to_string_lossy().to_string()]);
|
||||
} else {
|
||||
args.insert(long.to_string(), vec![]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user