Skip to content

Commit

Permalink
Don't flush on exfat.
Browse files Browse the repository at this point in the history
This would only make the mount command fail.
  • Loading branch information
V10lator committed Oct 9, 2015
1 parent 550a21a commit 5b0a486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mount-sd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if [ "$ACTION" = "add" ]; then
MOUNT_OPTS+=",uid=$DEF_UID,gid=$DEF_GID,utf8,flush,discard"
;;
exfat)
MOUNT_OPTS+=",uid=$DEF_UID,gid=$DEF_GID,utf8,flush,discard -t exfat"
MOUNT_OPTS+=",uid=$DEF_UID,gid=$DEF_GID,utf8,discard -t exfat"
;;
# NTFS support has not been tested but it's being left to please the ego of an engineer!
ntfs)
Expand Down

0 comments on commit 5b0a486

Please sign in to comment.