Skip to content

Commit

Permalink
fix: 🐛 Resolves error suppression issue in finder
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmilan-dev committed Mar 8, 2024
1 parent 91072c5 commit c425b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ZAP_PID=$!
# wait for ZAP log file before continuing
while [ ! -f "$LOG_FILE" ]; do
echo "Waiting for ZAP log file to be present."
LOG_FILE=`find / -type f -name "zap.log"`
LOG_FILE=$(find / -type f -name "zap.log" 2>/dev/null)
sleep 1
done

Expand Down

0 comments on commit c425b81

Please sign in to comment.