diff options
| -rw-r--r-- | src/Propellor/Property/Machine.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Machine.hs b/src/Propellor/Property/Machine.hs index bea1c040..22bc9a58 100644 --- a/src/Propellor/Property/Machine.hs +++ b/src/Propellor/Property/Machine.hs @@ -82,4 +82,4 @@ marvell = checkArchitecture [ARMEL] $ checkArchitecture :: [Architecture] -> Property DebianLike -> Property DebianLike checkArchitecture as p = withOS (getDesc p) $ \w o -> case o of (Just (System _ arch)) | arch `elem` as -> ensureProperty w p - _ -> unsupportedOS' -- error $ "Machine needs architecture to be one of: " ++ show as + _ -> error $ "Machine needs architecture to be one of: " ++ show as |
