Skip to content

Commit

Permalink
fix(ext/pkgx): install packages with pkgm
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jan 15, 2025
1 parent b8a05c6 commit c6575a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ext/src/pkgx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Pkgx {

let mut child = Command::new("sh")
.arg("-c")
.arg(format!("pkgx install {}", pkgs.join(" ")))
.arg(format!("pkgm install {}", pkgs.join(" ")))
.stdin(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
Expand Down

0 comments on commit c6575a1

Please sign in to comment.