https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 65f97708d87182ca06d710b33440e66f262d238c authored by Lars Bilke on 11 March 2021, 09:04:00 UTC
Bumped minimum VTK to 8.2.0.
Tip revision: 65f9770
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