diff --git a/lib/WriteRepo.hs b/lib/WriteRepo.hs
index 52f073654c63c5ce1c1f99978be4be1adbf4f4ee..89e1beac2ff30b7732a6c2fb245d32a5a6299aa4 100644
--- a/lib/WriteRepo.hs
+++ b/lib/WriteRepo.hs
@@ -28,7 +28,7 @@ import           Types                  (Dep (Local))
 writeAdjustedRepository :: LintConfig' -> FilePath -> FilePath -> DirResult -> IO ExitCode
 writeAdjustedRepository config inPath outPath result
   | resultIsFatal result && not (configDontCopyAssets config) = do
-      putStrLn "FATAL: Repository has missing assets; cannot write to outPath"
+      -- putStrLn "FATAL: Repository has missing assets; cannot write to outPath"
       pure (ExitFailure 1)
   | otherwise = do
       createDirectoryIfMissing True outPath
@@ -57,7 +57,7 @@ writeAdjustedRepository config inPath outPath result
             assetPath = FP.normalise $ inPath </> path
             newPath = FP.normalise $ outPath </> path
           in do
-            putStrLn $ "copying " <> assetPath <> " → " <> newPath
+            -- putStrLn $ "copying " <> assetPath <> " → " <> newPath
             copyFile assetPath newPath
 
       pure ExitSuccess