install: minor refactor for consistency
This commit is contained in:
parent
795bae0929
commit
56ab8011fe
1 changed files with 2 additions and 2 deletions
|
@ -102,13 +102,13 @@ EOF
|
||||||
git config -f "$temp_git" user.name "${GIT_USER}"
|
git config -f "$temp_git" user.name "${GIT_USER}"
|
||||||
git config -f "$temp_git" user.email "${GIT_EMAIL}"
|
git config -f "$temp_git" user.email "${GIT_EMAIL}"
|
||||||
|
|
||||||
diff "$config_file" "$temp_git" >/dev/null 2>&1 || {
|
if ! diff "$config_file" "$temp_git" >/dev/null 2>&1; then
|
||||||
echo "${yellow}OVERWRITE:$rst $config_file with $temp_git:"
|
echo "${yellow}OVERWRITE:$rst $config_file with $temp_git:"
|
||||||
echo "$cyan"
|
echo "$cyan"
|
||||||
cat "$temp_git"
|
cat "$temp_git"
|
||||||
echo "$rst"
|
echo "$rst"
|
||||||
dry_run || cp -f "$temp_git" "$config_file"
|
dry_run || cp -f "$temp_git" "$config_file"
|
||||||
}
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
nvim_plugins() {
|
nvim_plugins() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue