Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
feat: update to dagger-5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kjuulh committed Apr 29, 2023
1 parent 6937ef0 commit eb7470c
Show file tree
Hide file tree
Showing 4 changed files with 271 additions and 12 deletions.
1 change: 1 addition & 0 deletions crates/dagger-core/src/cli_session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ impl InnerCliSession {
while let Ok(Some(line)) = stdout_bufr.next_line().await {
if let Ok(conn) = serde_json::from_str::<ConnectParams>(&line) {
sender.send(conn).await.unwrap();
continue;
}

if let Some(logger) = &logger {
Expand Down
2 changes: 1 addition & 1 deletion crates/dagger-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(warnings)]

pub const DAGGER_ENGINE_VERSION: &'static str = "0.4.2";
pub const DAGGER_ENGINE_VERSION: &'static str = "0.5.1";

pub mod cli_session;
pub mod config;
Expand Down
2 changes: 1 addition & 1 deletion crates/dagger-sdk/examples/caching/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ async fn main() -> eyre::Result<()> {
let host_source_dir = client.host().directory_opts(
"./examples/caching/app",
dagger_sdk::HostDirectoryOptsBuilder::default()
.exclude(vec!["node_modules", "ci/"])
.exclude(vec!["node_modules/", "ci/"])
.build()?,
);

Expand Down
Loading

0 comments on commit eb7470c

Please sign in to comment.