From ee938c85e789677f9b10a8b6cbe5b76210b3dd23 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Mon, 15 Jul 2024 11:42:54 +0000 Subject: [PATCH] fix(etcd): don't install etcdctl --- etcd/src/helpers.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/etcd/src/helpers.rs b/etcd/src/helpers.rs index 6781f9a..482064f 100644 --- a/etcd/src/helpers.rs +++ b/etcd/src/helpers.rs @@ -23,9 +23,7 @@ pub fn setup() -> Result { let stdout = dag() .flox()? .with_workdir(".fluentci")? - .with_exec(vec![ - "flox", "install", "etcd", "etcdctl", "overmind", "tmux", - ])? + .with_exec(vec!["flox", "install", "etcd", "overmind", "tmux"])? .with_exec(vec![ "grep -q etcd Procfile || echo -e 'etcd: etcd $ETCD_OPTS \\n' >> Procfile", ])?