fixed issue with check always returning true

This commit is contained in:
depsterr 2020-02-25 15:30:12 +01:00
parent c1c656b1a6
commit f734780f4e
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ if [ $DEVICE_NODE == "./sdcard.img" ]; then
fi
# use p1, p2 extentions instead of 1, 2 when using sd drives
if [ [ $(echo $DEVICE_NODE | grep mmcblk) ] || [ $(echo $DEVICE_NODE | grep loop)] ]; then
if [ $(echo $DEVICE_NODE | grep mmcblk || echo $DEVICE_NODE | grep loop) ]; then
BOOTPART="${DEVICE_NODE}p1"
DATAPART="${DEVICE_NODE}p2"
else