Delete trailing whitespaces

This commit is contained in:
Santiago Lo Coco 2022-01-07 23:06:35 -03:00
parent 2b8c200c00
commit 2017fd7b47
3 changed files with 6 additions and 6 deletions

View File

@ -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
;;

View File

@ -2,7 +2,7 @@
displayDialogBox() {
case $dialogBox in
whiptail)
whiptail)
if [ "$1" = "--menu" ]; then
useWhiptailMenu "$@"
else

View File

@ -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