Skip to content

Commit

Permalink
Fix syntax of nfc checker
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarx2k committed Aug 12, 2014
1 parent 9052a0b commit 4f867f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions prebuilt/etc/init.d/10nfc_checker
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

model=`getprop ro.product.model`

if [ "$model" = "LG-D410" || "$model" = "LG-D405"]
then
if [ "$model" = "LG-D410" ] || ["$model" = "LG-D405" ]; then
mount -o remount,rw /system
rm -rf /system/etc/permissions/android.hardware.nfc.xml
rm -rf /system/etc/permissions/android.hardware.nfc.hce.xml
Expand Down

0 comments on commit 4f867f9

Please sign in to comment.