customer_szeged_281/.githooks/post-merge

33 lines
891 B
Plaintext
Raw Permalink Normal View History

2023-03-27 09:07:28 +02:00
#!/bin/bash -
# FILE="/tmp/post-merge$(date +%FT%H-%M-%S)"
# commit=$(git rev-parse --verify HEAD)
# echo "$commit $(git cat-file commit $commit)" >> /tmp/post-merge
# Redirect output to stderr.
exec 1>&2
if [ -z $IFS ]; then
IFS=$'\n'
fi
GIT_PULL_TMP=/tmp/git_pull
OPKG_CMDS_TMP=/tmp/opkg_commands
for fn in $(git diff-tree -r HEAD@{1} HEAD --name-only); do
2023-03-27 12:32:11 +02:00
if grep -E -q "(DC.*json|dc2c.hex|tariff.*json)" <<< $fn; then
2023-03-27 09:07:28 +02:00
echo "$fn" >> $GIT_PULL_TMP
fi
if grep -E -q ".*opkg_commands" <<< $fn; then
readarray opkg_commands < <(cat $fn)
for opkg_c in "${opkg_commands[@]}"; do
test -z $opkg_c && continue;
test ! -z $(grep -E "^\s*[#]+.*$" <<< $opkg_c) && continue
echo -n "$opkg_c" | tr -d '\n\r' >> $OPKG_CMDS_TMP 2>&1
echo "" >> $OPKG_CMDS_TMP 2>&1
done
source "$fn"
fi
done
2023-03-27 12:38:25 +02:00