From 80bbc3eb2a6161f6fb249110d779387b90505ee5 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Mon, 27 May 2024 22:38:33 +0000 Subject: [PATCH] fix: install missing curl dependency: +rockdaboot.github.io/libpsl --- Cargo.lock | 2 +- crates/cli/Cargo.toml | 2 +- crates/cli/src/cmd/call.rs | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c88de8b..b7794c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2133,7 +2133,7 @@ dependencies = [ [[package]] name = "fluentci-engine" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 5b8dd85..05fffd3 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -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 diff --git a/crates/cli/src/cmd/call.rs b/crates/cli/src/cmd/call.rs index 41fed74..61ba6d6 100644 --- a/crates/cli/src/cmd/call.rs +++ b/crates/cli/src/cmd/call.rs @@ -153,7 +153,10 @@ pub fn download_module(url: &str) -> Result { 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")