Skip to content
Snippets Groups Projects

Make GHCup isolate installs non-overwriting by default

Merged Arjun Kathuria requested to merge arjun/ghcup-hs:master into master
1 unresolved thread
2 files
+ 40
9
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -104,3 +104,6 @@ findFiles path regex = do
contents <- listDirectory path
pure $ filter (match regex) contents
checkFileAlreadyExists :: (MonadIO m) => FilePath -> m Bool
checkFileAlreadyExists fp = liftIO $ doesFileExist fp
Loading