Skip to content

Commit 9e38aea

Browse files
committed
Fix: quote cargo binstall command.
1 parent 6590b4c commit 9e38aea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ fn run_install(dev: bool) -> io::Result<()> {
382382
}?;
383383
#[cfg(not(windows))]
384384
run_cmd! {
385-
r#"curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash"#
385+
curl -L --proto =https --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash;
386386
}?;
387387

388388
run_cmd!(

0 commit comments

Comments
 (0)