We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d3513 commit 1c7287bCopy full SHA for 1c7287b
1 file changed
crates/cli/src/upgrade_command.rs
@@ -15,6 +15,8 @@ pub fn run_upgrade() -> Result<()> {
15
16
#[cfg(not(windows))]
17
fn run_platform_upgrade() -> Result<()> {
18
+ println!("Downloading install.sh from {INSTALL_SH_URL} ...");
19
+
20
let status = Command::new("sh")
21
.arg("-c")
22
.arg(unix_upgrade_script())
@@ -49,6 +51,7 @@ fn run_platform_upgrade() -> Result<()> {
49
51
use std::process::Stdio;
50
52
53
let parent_pid = std::process::id();
54
+ println!("Downloading install.ps1 from {INSTALL_PS1_URL} ...");
55
Command::new("powershell.exe")
56
.args([
57
"-NoProfile",
0 commit comments