Parcourir la source

possible fix is-false/true logic

Christian Winther il y a 1 an
Parent
commit
e70e13e265
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      docker/shared/root/docker/helpers.sh

+ 4 - 0
docker/shared/root/docker/helpers.sh

@@ -491,6 +491,8 @@ function show-call-stack() {
 # @see as-boolean
 function is-true() {
     as-boolean "${1:-}" && return 0
+
+    return 1
 }
 
 # @description Helper function see if $1 could be considered falsey
@@ -498,6 +500,8 @@ function is-true() {
 # @see as-boolean
 function is-false() {
     as-boolean "${1:-}" || return 0
+
+    return 1
 }
 
 # @description Helper function see if $1 could be truethy or falsey.