mirror of
https://github.com/lxc/distrobuilder.git
synced 2026-02-05 15:46:17 +01:00
10 lines
223 B
Bash
10 lines
223 B
Bash
|
|
#!/bin/sh -eu
|
||
|
|
|
||
|
|
echo "Checking for mixed tabs and spaces in shell scripts..."
|
||
|
|
|
||
|
|
OUT=$(git grep --untracked -lP '\t' '*.sh' || true)
|
||
|
|
if [ -n "${OUT}" ]; then
|
||
|
|
echo "ERROR: mixed tabs and spaces in script: ${OUT}"
|
||
|
|
exit 1
|
||
|
|
fi
|