Shorten the max line length to 100 (bootstrap.sh - 68:70)
This commit is contained in:
parent
f65ba43a56
commit
e2e3603eb0
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue