Exit with error code
This commit is contained in:
parent
703c0e8182
commit
8914cd99b3
10
bin/update
10
bin/update
|
@ -398,8 +398,9 @@ main() {
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
_lock_or_error_message
|
_lock_or_error_message
|
||||||
if [ $? -ne 0 ]; then
|
local error_code=$?
|
||||||
return $?
|
if [ $error_code -ne 0 ]; then
|
||||||
|
exit $error_code
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local start=`date +%s`
|
local start=`date +%s`
|
||||||
|
@ -467,8 +468,9 @@ main() {
|
||||||
|
|
||||||
if [ $lock_required -eq 0 ]; then
|
if [ $lock_required -eq 0 ]; then
|
||||||
_lock_or_error_message
|
_lock_or_error_message
|
||||||
if [ $? -ne 0 ]; then
|
local error_code=$?
|
||||||
return $?
|
if [ $error_code -ne 0 ]; then
|
||||||
|
exit $error_code
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue