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 fi
case $flag in case $flag in
h) h)
usage usage
exit 0 exit 0
;; ;;
w) w)
checkForDependencies "libnewt" checkForDependencies "libnewt"
setDialogBox "whiptail" setDialogBox "whiptail"
;; ;;
d) d)
checkForDependencies "dialog" checkForDependencies "dialog"
setDialogBox "dialog" setDialogBox "dialog"
;; ;;
?) ?)
printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG"
exit 1 exit 1
;; ;;

View File

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

View File

@ -83,7 +83,7 @@ loopThroughFiles() {
if [ -d "$DOTFILES_OTHER" ]; then if [ -d "$DOTFILES_OTHER" ]; then
filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }')
files=""; for item in $filesOutput; do files=""; for item in $filesOutput; do
files="${files}$item\n" files="${files}$item\n"
done done
displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return
fi fi