Add debug()s

This commit is contained in:
Santiago Lo Coco 2022-01-09 20:57:32 -03:00
parent 234722a2f5
commit 0efd09d9af
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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() {

View File

@ -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
}