https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 67fde4f3bd01e44239b00ac37051b9ce91a6780d authored by Tom Fischer on 08 November 2021, 11:17:29 UTC
Fix typo.
Tip revision: 67fde4f
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