Skip to content

Commit

Permalink
Minimize diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Dec 31, 2023
1 parent 4c73bfc commit 706e8e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,8 @@ parseProjectSkeleton srcImporters srcImportee cacheDir httpTransport verbosity s
_ <- downloadURI httpTransport verbosity uri fp
BS.readFile fp
Nothing ->
BS.readFile $ if isAbsolute pci then pci else takeDirectory rootSource </> pci
BS.readFile $
if isAbsolute pci then pci else takeDirectory rootSource </> pci

modifiesCompiler :: ProjectConfig -> Bool
modifiesCompiler pc = isSet projectConfigHcFlavor || isSet projectConfigHcPath || isSet projectConfigHcPkg
Expand Down

0 comments on commit 706e8e1

Please sign in to comment.