Drop unnecessary encoding argument

This commit is contained in:
Nathan Sobo
2014-10-20 10:06:19 -06:00
parent 5dd9f9c5ad
commit bc2dd9f52c

View File

@@ -129,7 +129,7 @@ parseCommandLine = ->
packageManifestPath = path.join(packageDirectoryPath, 'package.json')
if fs.statSyncNoException(packageManifestPath)
try
packageManifest = JSON.parse(fs.readFileSync(packageManifestPath, 'utf8'))
packageManifest = JSON.parse(fs.readFileSync(packageManifestPath))
resourcePath = packageDirectoryPath if packageManifest.name is 'atom'
if devMode