From 2017fd7b47400b7071bccf485894d6a63c13a017 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 7 Jan 2022 23:06:35 -0300 Subject: [PATCH] Delete trailing whitespaces --- scripts/bootstrap.sh | 8 ++++---- scripts/common.sh | 2 +- scripts/linkFiles.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 980d4b2..cad1373 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -18,19 +18,19 @@ checkParameters() { fi case $flag in - h) + h) usage exit 0 ;; - w) + w) checkForDependencies "libnewt" setDialogBox "whiptail" ;; - d) + d) checkForDependencies "dialog" setDialogBox "dialog" ;; - ?) + ?) printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" exit 1 ;; diff --git a/scripts/common.sh b/scripts/common.sh index 0153ee6..eecc93c 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -2,7 +2,7 @@ displayDialogBox() { case $dialogBox in - whiptail) + whiptail) if [ "$1" = "--menu" ]; then useWhiptailMenu "$@" else diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 6bd38f8..504399a 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -83,7 +83,7 @@ loopThroughFiles() { if [ -d "$DOTFILES_OTHER" ]; then filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') files=""; for item in $filesOutput; do - files="${files}$item\n" + files="${files}$item\n" done displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return fi