From db1b9ac7000d548280195413bd827bab0462165f Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 31 May 2023 09:12:43 +0200 Subject: [PATCH] removed downloading of tariff-files. removed downloading of dc.hex files (only dc.bin-files are downloaded) --- .githooks/post-merge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.githooks/post-merge b/.githooks/post-merge index 05326ec..b7acf13 100755 --- a/.githooks/post-merge +++ b/.githooks/post-merge @@ -30,7 +30,7 @@ get_commit_for_blob () { write_log_file () { local now=$(date +"%Y-%m-%dT%T") for fn in $(git diff-tree -r HEAD@{1} HEAD --name-only); do - if grep -qE "(DC.*json|dc.*hex|dc.*bin|tariff.*json)" <<< $fn; then + if grep -qE "(DC2C.*json|dc2c.*bin)" <<< $fn; then # called in repository: $fn is e.g. etc/psa_tariff/tariff01.json # add '/' prefix echo "DOWNLOAD, $(echo $fn | awk '{ printf "/"$0 }'), $now, N/A" >> "$GIT_UPDATE_LOG"