~aleteoryx/muditaos

d4b06f4a361ccc6b24a9bfe8acb229cff2017c39 — Adam Dobrowolski 4 years ago fd32726
[EGD-5238] Fix clang checking files config value loading

Value loading was to strict and required exact match, where we
expect match with lowercase value of value stored
1 files changed, 2 insertions(+), 1 deletions(-)

M config/style_check_hook.sh
M config/style_check_hook.sh => config/style_check_hook.sh +2 -1
@@ 137,7 137,8 @@ case "${1}" in
        fi
        FILES=$(git diff-index --cached --name-only HEAD)
        LAST="Stage" 
        FIX=$([[ $(git config user.fixinstage) == "true" ]] && echo "true" || echo "false")
        FIX=$([[ $(git config user.fixinstage) ]] && git config user.fixinstage || echo "false")
        FIX=${FIX:-false}
        ;;
esac