From d786c87a789d784294d09a05f074672562faa54f Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 8 Jun 2024 16:08:06 +0200 Subject: [PATCH] cd_error_ --- cd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cd.sh b/cd.sh index bb50c68..e88fcac 100644 --- a/cd.sh +++ b/cd.sh @@ -614,14 +614,14 @@ local name } cd_error_ci () { - echo "× CI: ${1}" + echo "× CI: ${*}" exit ${CD_ERROR_CI} } cd_error_os () { -local variable="${1}" + cd_error_os__variable="${1}" printf "× OS: " - cd_echo "${variable}" + cd_echo "${cd_error_os__variable}" exit ${CD_ERROR_OS} }