Delete trailing whitespaces
This commit is contained in:
parent
2b8c200c00
commit
2017fd7b47
|
@ -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
|
||||
;;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
displayDialogBox() {
|
||||
case $dialogBox in
|
||||
whiptail)
|
||||
whiptail)
|
||||
if [ "$1" = "--menu" ]; then
|
||||
useWhiptailMenu "$@"
|
||||
else
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue