From 00046e6eb229c14756997e43d4a81493e0fc5b5e Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Wed, 4 Oct 2023 10:17:59 +0200 Subject: [PATCH] fix: dev: replace a ``return`` with an ``exit`` !minor --- bin/compose-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compose-core b/bin/compose-core index 726f067..83e43db 100755 --- a/bin/compose-core +++ b/bin/compose-core @@ -4194,7 +4194,7 @@ while read-0 arg; do exit 0 ;; --get-project-name) - project=$(get_default_project_name) || return 1 + project=$(get_default_project_name) || exit 1 echo "$project" exit 0 ;;