Skip to content

Commit

Permalink
Merge pull request #28 from fluentci-io/fix/pkgx-curl
Browse files Browse the repository at this point in the history
fix: install missing curl dependency: +rockdaboot.github.io/libpsl
  • Loading branch information
tsirysndr committed May 27, 2024
2 parents 55b4194 + 80bbc3e commit 24c1736
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MPL-2.0"
name = "fluentci-engine"
readme = "../../README.md"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.4.1"
version = "0.4.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
5 changes: 4 additions & 1 deletion crates/cli/src/cmd/call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ pub fn download_module(url: &str) -> Result<Wasm, Error> {

Pkgx::default().setup()?;

let cmd = format!("pkgx curl -s {} -o {}", url, filename);
let cmd = format!(
"pkgx +rockdaboot.github.io/libpsl +curl.se curl -s {} -o {}",
url, filename
);
fs::create_dir_all(&work_dir)?;

let mut child = Command::new("bash")
Expand Down

0 comments on commit 24c1736

Please sign in to comment.