diff options
Diffstat (limited to 'dmenumount')
-rwxr-xr-x | dmenumount | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ alldrives="$(lsblk -rpo "name,type,size,mountpoint" | grep 'part\|rom\|crypt' | for i in $alldrives; do echo "$i" | grep -qi '([0-9.]*[mgt])' && continue - if ! `blkid $i | grep -q 'crypto_LUKS'`; then + if ! blkid "$i" | grep -q 'crypto_LUKS'; then usbdrives="$(echo "$alldrives" | grep "$i")\n$usbdrives" fi done |