fix logic error in thirdPartyPopulated handling
This commit is contained in:
parent
ca31d7e54f
commit
706e2a63fb
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ adjustExportImport r rs = do
|
||||||
-- When thirdPartyPopulated is True, the remote
|
-- When thirdPartyPopulated is True, the remote
|
||||||
-- does not need to be configured with importTree to support
|
-- does not need to be configured with importTree to support
|
||||||
-- imports.
|
-- imports.
|
||||||
isimport <- pure (importTree (config r) || not (thirdPartyPopulated (remotetype r)))
|
isimport <- pure (importTree (config r) || thirdPartyPopulated (remotetype r))
|
||||||
<&&> isImportSupported r
|
<&&> isImportSupported r
|
||||||
let r' = r
|
let r' = r
|
||||||
{ remotetype = (remotetype r)
|
{ remotetype = (remotetype r)
|
||||||
|
|
Loading…
Add table
Reference in a new issue