mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
style: simplify string formatting for readability (#231763)
* style: simplify string formatting for readability * fix: formatting in `.rs` files in `src/`
This commit is contained in:
@@ -122,7 +122,7 @@ fn validate_cli_is_good(exe_path: &Path) -> Result<(), AnyError> {
|
||||
let o = new_std_command(exe_path)
|
||||
.args(["--version"])
|
||||
.output()
|
||||
.map_err(|e| CorruptDownload(format!("could not execute new binary, aborting: {}", e)))?;
|
||||
.map_err(|e| CorruptDownload(format!("could not execute new binary, aborting: {e}")))?;
|
||||
|
||||
if !o.status.success() {
|
||||
let msg = format!(
|
||||
|
||||
Reference in New Issue
Block a user