install: convert to tabstop = 2

This commit is contained in:
Fernando Schauenburg 2022-02-07 20:14:24 +01:00
parent 85dd0a4838
commit 56865870ec

View file

@ -113,11 +113,7 @@ EOF
git config -f "$temp_git" user.email "${GIT_EMAIL}"
if ! diff "$config_file" "$temp_git" >/dev/null 2>&1; then
if [ -f "$config_file" ]; then
action=OVERWRITE
else
action=CREATE
fi
if [ -f "$config_file" ]; then action=OVERWRITE; else action=CREATE; fi
echo "$yellow$action:$rst $config_file with contents of $temp_git:"
echo "$cyan"
cat "$temp_git"