1
0
mirror of https://github.com/lxc/distrobuilder.git synced 2026-02-05 15:46:17 +01:00
Files
distrobuilder/test/lint/mixed-whitespace.sh

10 lines
223 B
Bash
Raw Permalink Normal View History

#!/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