Delete trailing whitespaces
This commit is contained in:
parent
2b8c200c00
commit
2017fd7b47
|
@ -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
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue