From e2e3603eb0ee8a0c4b2137a0557794bf95605a81 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 14 Feb 2022 23:12:50 -0300 Subject: [PATCH] Shorten the max line length to 100 (bootstrap.sh - 68:70) --- scripts/bootstrap.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 9c20c97..aa4aeee 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -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