mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 12:21:03 +00:00
Fix ssl-opt.sh not starting when lsof is not available
$START_DELAY was used before it was defined.
This commit is contained in:
parent
b461ba5630
commit
2cc7ad4cfc
|
@ -254,7 +254,7 @@ if type lsof >/dev/null 2>/dev/null; then
|
|||
done
|
||||
}
|
||||
else
|
||||
echo "Warning: lsof not available, wait_server_start = sleep $START_DELAY"
|
||||
echo "Warning: lsof not available, wait_server_start = sleep"
|
||||
wait_server_start() {
|
||||
sleep "$START_DELAY"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue