Update device.sh

This commit is contained in:
LukeZGD 2021-07-20 13:30:19 +08:00
parent 3c1fc9fce9
commit 9a189b377d

View File

@ -10,7 +10,8 @@ FindDevice() {
Log "Finding device in $1 mode..." Log "Finding device in $1 mode..."
while (( $i < $Timeout )); do while (( $i < $Timeout )); do
[[ $($irecovery -q 2>/dev/null | grep -w "MODE" | cut -c 7-) == "$1" ]] && DeviceIn=1 [[ $platform == "linux" ]] && DeviceIn=$(lsusb | grep -c $USB)
[[ $platform == "macos" && $($irecovery -q 2>/dev/null | grep -w "MODE" | cut -c 7-) == "$1" ]] && DeviceIn=1
if [[ $DeviceIn == 1 ]]; then if [[ $DeviceIn == 1 ]]; then
Log "Found device in $1 mode." Log "Found device in $1 mode."
DeviceState="$1" DeviceState="$1"