Skip to content

Commit 57a3c2e

Browse files
authored
Merge pull request #363 from continuouspipe/feature/fix-is-false
Fix is_false returning same as is_true
2 parents 58c6627 + 99b8337 commit 57a3c2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ubuntu/16.04/usr/local/share/bootstrap/common_functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ is_true() {
110110
is_false() {
111111
case "$1" in
112112
true|1)
113-
return 0;
113+
return 1;
114114
;;
115115
esac
116-
return 1;
116+
return 0;
117117
}
118118

119119
is_hem_project() {

0 commit comments

Comments
 (0)