summaryrefslogtreecommitdiff
path: root/src/Propellor/Types/Chroot.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/Types/Chroot.hs')
-rw-r--r--src/Propellor/Types/Chroot.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Types/Chroot.hs b/src/Propellor/Types/Chroot.hs
index b3751a9a..33742c86 100644
--- a/src/Propellor/Types/Chroot.hs
+++ b/src/Propellor/Types/Chroot.hs
@@ -28,7 +28,7 @@ instance Sem.Semigroup ChrootInfo where
instance Monoid ChrootInfo where
mempty = ChrootInfo mempty mempty
- mappend = (<>)
+ mappend = (Sem.<>)
instance Empty ChrootInfo where
isEmpty i = and
@@ -49,7 +49,7 @@ instance Sem.Semigroup ChrootCfg where
instance Monoid ChrootCfg where
mempty = NoChrootCfg
- mappend = (<>)
+ mappend = (Sem.<>)
instance Empty ChrootCfg where
isEmpty c= c == NoChrootCfg