Skip to content

Commit

Permalink
Fix usage of FAI's shell.log vs. scripts.log
Browse files Browse the repository at this point in the history
We check for scripts.log, but still use shell.log, d'oh :)
  • Loading branch information
mika committed Feb 2, 2024
1 parent bdf9b40 commit 06e703a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grml-live
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ else

# FAI versions >=6.0 always writes to scripts.log
if [ -r "$CHECKLOG/scripts.log" ] ; then
grep 'FAILED with exit code' $CHECKLOG/shell.log >> $LOGFILE && ERROR=6
grep 'FAILED with exit code' $CHECKLOG/scripts.log >> $LOGFILE && ERROR=6
fi

if [ -r "$CHECKLOG/fai.log" ] ; then
Expand Down

0 comments on commit 06e703a

Please sign in to comment.