return correct contents when no config present

This commit is contained in:
Philip Weiss
2018-03-08 22:00:51 -08:00
parent a31795e1f3
commit 9282f07d07

View File

@@ -209,7 +209,8 @@ function readProjectSpecificationSync (filepath, executedFrom) {
if (contents.paths == null) {
contents.paths = [path.dirname(filepath)]
}
return (contents.config == null) ? {} : contents
contents.config = (contents.config == null) ? {} : contents.config
return contents
}
function normalizeDriveLetterName (filePath) {