mirror of
https://github.com/atom/atom.git
synced 2026-02-18 10:31:54 -05:00
return correct contents when no config present
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user