From a9b2c33f9613cc20122a2b62850dab4c5756210a Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Wed, 17 Jan 2024 15:37:29 +0100 Subject: [PATCH] fix: dev: [compose] avoid unnecessary command ``cat`` --- bin/compose | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compose b/bin/compose index 69d1f8c..434533f 100755 --- a/bin/compose +++ b/bin/compose @@ -1004,7 +1004,7 @@ load_env() { else docker_run_opts+=("$opt") fi - done < <(cat "$COMPOSE_LAUNCHER_OPTS") + done < "$COMPOSE_LAUNCHER_OPTS" fi }