Fix bugs
This commit is contained in:
parent
d66fc9a611
commit
a6f48ed9fb
|
@ -39,7 +39,7 @@ useDialog() {
|
|||
height=$(calcHeight "$str")
|
||||
formatOptions "$@"
|
||||
if [ $found = false ]; then
|
||||
height=0; width=0
|
||||
height=10; width=60
|
||||
dialog "$@" ${height} ${width}
|
||||
else
|
||||
dialog "${options[@]}"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
cloneAndMake() {
|
||||
displayDialogBox --infobox "Downloading ${1}"
|
||||
git clone $2 > /dev/null 2>&1
|
||||
cd $1; sudo make install; cd ..
|
||||
cd $1; sudo make install > /dev/null 2>&1; cd ..
|
||||
}
|
||||
|
||||
downloadAndInstallPackages() {
|
||||
|
|
|
@ -82,7 +82,10 @@ loopThroughFiles() {
|
|||
|
||||
if [ -d "$DOTFILES_OTHER" ]; then
|
||||
filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }')
|
||||
displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n$filesOutput" || return
|
||||
files=""; for item in $filesOutput; do
|
||||
files="${files}$item\n"
|
||||
done
|
||||
displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return
|
||||
fi
|
||||
|
||||
sudo bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); "runDetachedScript""
|
||||
|
|
Loading…
Reference in New Issue