Nicholas Chin has uploaded this change for review. ( 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 --- M util/find_usbdebug/find_usbdebug.sh 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/86058/1
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