Shorten the max line length to 100 (bootstrap.sh - 101:107)

This commit is contained in:
Santiago Lo Coco 2022-02-14 23:13:31 -03:00
parent e2e3603eb0
commit be8e1ff190
1 changed files with 7 additions and 2 deletions

View File

@ -98,8 +98,13 @@ getGitconfigData() {
checkCancel "You must enter an e-mail." && return
done
sed -e "s/PERSONAL_NAME/$gitPersonalName/g" -e "s/PERSONAL_MAIL/$gitPersonalMail/g" -e "s|WORK_PATH|${gitWorkPath}|g" ./templates/.gitconfig > ../dotfiles/.gitconfig
sed -e "s/WORK_NAME/$gitWorkName/g" -e "s/WORK_MAIL/$gitWorkMail/g" ./templates/.gitconfig-work > ../dotfiles/.gitconfig-work
nameSubst="s/PERSONAL_NAME/$gitPersonalName/g"
mailSubst="s/PERSONAL_MAIL/$gitPersonalMail/g"
pathSubst="s|WORK_PATH|$gitWorkPath|g"
sed -e "$nameSubst" -e "$mailSubst" -e "$pathSubst" templates/.gitconfig > ../dotfiles/.gitconfig
nameSubst="s/WORK_NAME/$gitWorkName/g"
mailSubst="s/WORK_MAIL/$gitWorkMail/g"
sed -e "$nameSubst" -e "$mailSubst" templates/.gitconfig-work > ../dotfiles/.gitconfig-work
}
checkForDependencies() {