Skip to content

Commit 1c7287b

Browse files
committed
fix: show upgrade installer download
1 parent c8d3513 commit 1c7287b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

crates/cli/src/upgrade_command.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ pub fn run_upgrade() -> Result<()> {
1515

1616
#[cfg(not(windows))]
1717
fn run_platform_upgrade() -> Result<()> {
18+
println!("Downloading install.sh from {INSTALL_SH_URL} ...");
19+
1820
let status = Command::new("sh")
1921
.arg("-c")
2022
.arg(unix_upgrade_script())
@@ -49,6 +51,7 @@ fn run_platform_upgrade() -> Result<()> {
4951
use std::process::Stdio;
5052

5153
let parent_pid = std::process::id();
54+
println!("Downloading install.ps1 from {INSTALL_PS1_URL} ...");
5255
Command::new("powershell.exe")
5356
.args([
5457
"-NoProfile",

0 commit comments

Comments
 (0)