Skip to content

Commit

Permalink
fix(publish): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Feb 7, 2021
1 parent eb91162 commit b4c2823
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xtask/src/dispatch/bump_choco.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ impl Runner for BumpChoco {
);

println!(":: Downloading release binary...");
cmd!("iwr {release_uri} -OutFile ./release.tar.gz").run()?;
cmd!("powershell iwr {release_uri} -OutFile ./release.tar.gz").run()?;

println!(":: Extracting release binary...");
let bin_out_dir = "./dist/choco/tools/";
Expand Down Expand Up @@ -78,7 +78,7 @@ impl Runner for BumpChoco {
.run()?;

println!(":: Packing up NuGet package...");
cmd!("choco pack {nuspec_path}} --verbose").run()?;
cmd!("choco pack {nuspec_path} --verbose").run()?;

println!(":: Pushing to choco repository...");
let ver = ver.as_ref();
Expand Down

0 comments on commit b4c2823

Please sign in to comment.