diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 9f2fdce..7775069 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,7 +6,7 @@ usage: ${0##*/} [command] -h Print this help message. -w Use whiptail. -d Use dialog. - -f Debug to CocoRice.log + -f Debug to CocoRice.log file. EOF } @@ -96,7 +96,7 @@ checkForDependencies() { if [ $? -eq 1 ]; then unameOutput=$(uname -a | grep "arch") if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then - sudo pacman --noconfirm --needed -Sy ${1} > /dev/null 2>&1 + sudo pacman --noconfirm --needed -Sy ${1} 2>&1 | debug if [ $? -eq 1 ]; then echo "Couldn't install ${1}." >&2 exit 1 diff --git a/scripts/install.sh b/scripts/install.sh index 01f2be7..74a227f 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,8 +2,8 @@ cloneAndMake() { displayDialogBox --infobox "Downloading ${1}" VALUES - git clone $2 > /dev/null 2>&1 - (cd $1; sudo make install > /dev/null 2>&1) + git clone $2 2>&1 | debug + (cd $1; sudo make install 2>&1 | debug) } downloadAndInstallPackages() { diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index a07ea35..0c6924b 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -89,7 +89,7 @@ loopThroughFiles() { fi password=$(displayDialogBox --passwordbox "Enter your password" VALUES 3>&1 1>&2 2>&3) - echo $password | sudo -S bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript $dialogBox" 2> /dev/null + echo $password | sudo -S bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript $dialogBox" 2>&1 | debug unset password }