Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
m-1-k-3 committed Dec 31, 2024
1 parent 9a5bff9 commit 52a4eea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helpers/helpers_emba_prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ binary_architecture_threader() {
}

architecture_check() {
if [[ ! -f "${P99_CSV_LOG}" ]] || [[ ${#ALL_FILES_ARR[@]} -eq 0 ]] ; then
if [[ ${#ALL_FILES_ARR[@]} -eq 0 ]] ; then
print_output "[-] WARNING: Architecture auto detection and backend data population not possible\\n"
return
fi
Expand Down
5 changes: 4 additions & 1 deletion modules/S116_qemu_version_detection.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ S116_qemu_version_detection() {
if ! [[ " ${MODULES_EXPORTED[*]} " == *S09* ]]; then
break
fi
print_output "[*] Waiting for S09 module - strings and unhandled file generaation ..." "no_log"
if grep -q "S09_*finished" "${LOG_DIR}/emba.log"; then
break
fi
print_output "[*] Waiting for S09 module - strings and unhandled file generation ..." "no_log"
sleep 1
done

Expand Down

0 comments on commit 52a4eea

Please sign in to comment.