From be8e1ff190b05db29051701f85e0e03842a99a2d Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 14 Feb 2022 23:13:31 -0300 Subject: [PATCH] Shorten the max line length to 100 (bootstrap.sh - 101:107) --- scripts/bootstrap.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index aa4aeee..5ae6db0 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -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() {