Improve redirection of setup command output to log file, including stderr

This commit is contained in:
Jason Ertel
2020-08-20 10:03:49 -04:00
parent 014a0054c2
commit 22c9180386

View File

@@ -42,7 +42,8 @@ title() {
logCmd() {
cmd=$1
info "Executing command: $cmd\n$($cmd)\n"
info "Executing command: $cmd"
$cmd >> "$setup_log" 2>&1
}
analyze_system() {