Shorten the max line length to 100 (bootstrap.sh - 68:70)

This commit is contained in:
Santiago Lo Coco 2022-02-14 23:12:50 -03:00
parent f65ba43a56
commit e2e3603eb0
1 changed files with 3 additions and 1 deletions

View File

@ -65,7 +65,9 @@ getGitconfigData() {
displayDialogBox --yesno "\nWould you like to set up a work account?"
if [ $? -eq 1 ]; then
sed -e "s/PERSONAL_NAME/$gitPersonalName/g" -e "s/PERSONAL_MAIL/$gitPersonalMail/g" ./templates/.gitconfig-notwork > ../dotfiles/.gitconfig
nameSubst="s/PERSONAL_NAME/$gitPersonalName/g"
mailSubst="s/PERSONAL_MAIL/$gitPersonalMail/g"
sed -e "$nameSubst" -e "$mailSubst" templates/.gitconfig-notwork > ../dotfiles/.gitconfig
return
fi