diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 8bd1e8b..24846b2 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -25,7 +25,7 @@ checkParameters() { -l | --log) checkForDependencies "libnewt" setDialogBox "whiptail" - setLogToFile true + setLogToFile true "$(pwd -P)" ;; -p | --packages) installPackages=true diff --git a/scripts/common.sh b/scripts/common.sh index b9d9d53..29dabeb 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -171,8 +171,9 @@ getDialogBox() { setLogToFile() { export logToFile=${1} + export logFolder=${2} } debug() { - [[ -z ${logToFile+x} || $logToFile = true ]] && tee -a sadedot.log > /dev/null + [[ -z ${logToFile+x} || $logToFile = true ]] && tee -a "$logFolder/sadedot.log" > /dev/null }