am 0a793bd9: Properly filter paths to locate device directories
* commit '0a793bd9730722fd79fe34a939bae1e9fc1bc1af':
Properly filter paths to locate device directories
diff --git a/generate-blob-lists.sh b/generate-blob-lists.sh
index c2c3278..0f34ad3 100755
--- a/generate-blob-lists.sh
+++ b/generate-blob-lists.sh
@@ -83,7 +83,7 @@
for DEVICENAME in $DEVICES
do
- MANUFACTURERNAME=$( find device -type d | grep [^/]\*/[^/]\*/$DEVICENAME\$ | cut -f 2 -d / )
+ MANUFACTURERNAME=$( find device -type d | grep ^[^/]\*/[^/]\*/$DEVICENAME\$ | cut -f 2 -d / )
if test $(wc -l < $ARCHIVEDIR/$DEVICENAME-without.txt) != 0 -a $(wc -l < $ARCHIVEDIR/$DEVICENAME-with.txt) != 0
then
(