Elyes Haouas has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86058?usp=email )
Change subject: util/find_usbdebug: Fix line indented with spaces instead of tabs ......................................................................
util/find_usbdebug: Fix line indented with spaces instead of tabs
Change-Id: Id131f68465330c183c7c6ba4c85cd098dfe9a94e Signed-off-by: Nicholas Chin nic.c3.14@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/86058 Reviewed-by: Elyes Haouas ehaouas@noos.fr Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M util/find_usbdebug/find_usbdebug.sh 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Elyes Haouas: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/util/find_usbdebug/find_usbdebug.sh b/util/find_usbdebug/find_usbdebug.sh index 4606080..47d13a9 100755 --- a/util/find_usbdebug/find_usbdebug.sh +++ b/util/find_usbdebug/find_usbdebug.sh @@ -47,7 +47,7 @@ port=$2
# lsusb -t uses 3 digits for bus/port nunmbers as of version 016 and later - if [ $(lsusb -V | cut -f 3 -d " ") -lt 16 ]; then + if [ $(lsusb -V | cut -f 3 -d " ") -lt 16 ]; then busstr=`printf "Bus %02d" "$bus"` portstr="Port $port" else