summaryrefslogtreecommitdiff
path: root/.tools/jobs/spaces.sh
blob: b0f485dbe4ff34e3cfccdb5ce2bac37ce4931c25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

find -H . -type f -name "*.txt" -exec sed -i 's/[[:blank:]]*$//' {} \;

export RES=$(git diff --name-only)
if [[ -n "${RES}" ]]; then
    echo "Extra spaces before new lines detected in files:"
    git diff --name-only
    exit 1
fi