FIX command typo

This commit is contained in:
Nathan Dwarshuis 2020-05-02 00:13:33 -04:00
parent 63f4c0c035
commit ebbb2a714d
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ data Removable = Removable
instance Mountable Removable where
mount Removable { deviceSpec = d, label = l } m =
io $ runMountNotify "mount" [c, "-b", d] l m
io $ runMountNotify "udisksctl" [c, "-b", d] l m
where
c = if m then "unmount" else "mount"