SATS/update

29 lines
568 B
Plaintext
Raw Permalink 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-07-21 10:44:45 +00:00
# (1) Check if synchronization done #
if [ ! -e /target/sync ]; then
2017-07-21 10:44:45 +00:00
slog "not synchronized yet, aborting" - "update" && exit 127;
2017-03-10 14:18:52 +00:00
fi;
2017-07-21 10:44:45 +00:00
# (2) Send data + fetch configuration
test "$($SOURCE_DIR/lib/api/update)" = "127" && slog "update failed" - "update" && exit 127;
2017-03-10 14:18:52 +00:00
2017-01-26 13:23:50 +00:00
2017-01-28 18:26:19 +00:00
2017-07-21 10:44:45 +00:00
# (3) 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;