mirror of
https://github.com/atom/atom.git
synced 2026-01-22 13:28:01 -05:00
Drop unnecessary encoding argument
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user