Remove . after path to prevent confusion

This commit is contained in:
Kevin Sawicki 2016-05-24 09:56:36 -07:00
parent ca72d4346b
commit 3e15021c12

View file

@ -259,7 +259,7 @@ function loadApplicationPackage (packagePath) {
try {
Module._resolveFilename(packagePath, module, true)
} catch (e) {
showErrorMessage(`Unable to find Electron app at ${packagePath}.\n\n${e.message}`)
showErrorMessage(`Unable to find Electron app at ${packagePath}\n\n${e.message}`)
return
}