https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: f5f5a9dfda4a2120f1a83693858b878ac39cadba authored by Lars Bilke on 19 April 2021, 21:15:36 UTC
[conan] Bump Qt to 5.15 on Linux and Mac.
Tip revision: f5f5a9d
pre-commit-file-extensions.sh
#!/usr/bin/env bash

# set -e

# Check for uppercase letters in filename extensions
pattern=".*\.\w*([A-Z]+)\w*$"
files=$(echo $@ | grep -E "$pattern")

if [[ -n $files ]];
then
    echo "Attention!"
    echo "----------"
    echo "Found files that contain capital letters in the file extension."
    echo "Please rename the following files and commit again:"

    while read -r file; do
        echo -e '\E[0;32m'"$file"'\033[0m'
    done <<< "$files"
    # Abort commit
    exit 1
fi

exit 0
back to top