[fix] update can now touch /target/sync (removed exit before)

This commit is contained in:
xdrm-brackets 2017-05-09 13:54:35 +02:00
parent d41b125dc2
commit f459a7c4be
1 changed files with 7 additions and 3 deletions

10
update
View File

@ -8,13 +8,17 @@ source $__DIR__/lib/include/bash/func;
# [1] Send data + fetch configuration
if [ ! -e /target/sync ]; then
test "$($SOURCE_DIR/lib/api/init)" = "127" && slog "init failed" - "update" && exit;
test $? -ne 0 && exit 127;
$SOURCE_DIR/lib/api/init;
if [ $? -ne 0 ]; then
slog "init failed" - "update";
exit 127;
fi;
touch /target/sync;
else
test "$($SOURCE_DIR/lib/api/sync)" = "127" && slog "sync failed" - "update" && exit;
test "$($SOURCE_DIR/lib/api/sync)" = "127"; && slog "sync failed" - "update" && exit;
test $? -ne 0 && exit 127;
fi;