SATS/update

21 lines
446 B
Plaintext
Raw Normal View History

#!/bin/bash
__DIR__=$(dirname $(realpath $0));
source $__DIR__/lib/include/bash/const;
source $__DIR__/lib/include/bash/func;
2017-01-26 13:23:50 +00:00
2017-01-28 10:45:09 +00:00
# [1] Send data + fetch configuration
2017-02-17 18:40:52 +00:00
test "$($SOURCE_DIR/lib/api/sync)" = "127" && slog "sync failed" - "update" && exit;
2017-01-26 13:23:50 +00:00
2017-01-28 18:26:19 +00:00
test $? -ne 0 && exit 127;
2017-01-26 13:23:50 +00:00
# [2] Update source
BRANCH=$(cat $BRANCH_CONF);
2017-01-26 13:23:50 +00:00
cd $SOURCE_DIR
2017-01-26 13:23:50 +00:00
git checkout $BRANCH;
2017-01-28 18:26:19 +00:00
test $? -ne 0 && exit 127;
2017-01-26 13:23:50 +00:00
git pull origin $BRANCH;
2017-01-28 18:26:19 +00:00
test $? -ne 0 && exit 127;