Explorar o código

possible fix is-false/true logic

Christian Winther hai 1 ano
pai
achega
e70e13e265
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  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.