Skip to content

Commit

Permalink
Merge pull request #32 from fluentci-io/fix/wait-on
Browse files Browse the repository at this point in the history
fix(common): replace `bunx wait-port` with `deno run -A npm:wait-port`
  • Loading branch information
tsirysndr committed Jul 13, 2024
2 parents d579187 + e6ccd7c commit 6fa0af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/common/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ pub fn wait_on(graph: Arc<Mutex<Graph>>, port: u32, timeout: Option<u32>) -> Res
_ => vec![dep_id],
};
let cmd = format!(
"pkgx bunx wait-port localhost:{} -t {}",
"pkgx deno run -A npm:wait-port localhost:{} -t {}",
port,
timeout.unwrap_or(60) * 1000
);
Expand Down

0 comments on commit 6fa0af2

Please sign in to comment.