Skip to content

Commit

Permalink
fix pkgx dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Mar 16, 2024
1 parent face027 commit 38fa015
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/ext/src/pkgx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ impl Extension for Pkgx {

let mut child = Command::new("bash")
.arg("-c")
.arg(format!("eval \"$(pkgx --shellcode)\" && {}", cmd))
.arg(format!(
"eval \"$(pkgx --shellcode)\" && pkgx integrate && {}",
cmd
))
.current_dir(work_dir)
.stdout(Stdio::piped())
.stderr(Stdio::piped())
Expand Down

0 comments on commit 38fa015

Please sign in to comment.