Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
fixed downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
0vf committed Mar 28, 2023
1 parent 7287bc3 commit c6f9cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fn download_quark(progress_bar: &ProgressBar) {
// download quark and save it to the temporary directory
let output = Command::new("powershell")
.arg("-Command")
.arg(format!("Invoke-WebRequest {} -OutFile {}", "https://cdn.discordapp.com/attachments/1044585102384042005/1089554528258494565/quark.exerrr", quark_exe_path.display()))
.arg(format!("Invoke-WebRequest {} -OutFile {}", "https://cdn.discordapp.com/attachments/1044585102384042005/1089554528258494565/quark.exe", quark_exe_path.display()))
.output()
.expect("Failed to download quark.exe");

Expand Down

0 comments on commit c6f9cd1

Please sign in to comment.