diff options
Diffstat (limited to 'lib/common.sh')
-rw-r--r-- | lib/common.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/common.sh b/lib/common.sh index 73293d7..22b017c 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -36,7 +36,5 @@ _ob_return() # Pop the variable list from the top of the stack. _OB_STACK_VARS="${_OB_STACK_VARS%|*}" - # Print the return value. - echo ${1} - return 0 + return ${1} } |