Skip to content

Commit

Permalink
Camel case some parameters referenced in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Mar 17, 2017
1 parent 1c2f3ea commit 68fbb36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/mac.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ function createAppHumanReadableCopyrightTest (baseOpts, humanReadableCopyright)
fs.readFile(plistPath, 'utf8', cb)
}, function (file, cb) {
var obj = plist.parse(file)
t.equal(obj.NSHumanReadableCopyright, opts.appCopyright, 'NSHumanReadableCopyright should reflect opts["app-copyright"]')
t.equal(obj.NSHumanReadableCopyright, opts.appCopyright, 'NSHumanReadableCopyright should reflect opts.appCopyright')
cb()
}
], function (err) {
Expand Down
2 changes: 1 addition & 1 deletion win32.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function generateRceditOptionsSansIcon (opts) {
function updateWineMissingException (err) {
if (err && err.code === 'ENOENT' && err.syscall === 'spawn wine') {
err.message = 'Could not find "wine" on your system.\n\n' +
'Wine is required to use the app-copyright, app-version, build-version, icon, and \n' +
'Wine is required to use the appCopyright, appVersion, buildVersion, icon, and \n' +
'win32metadata parameters for Windows targets.\n\n' +
'Make sure that the "wine" executable is in your PATH.\n\n' +
'See https://github.com/electron-userland/electron-packager#building-windows-apps-from-non-windows-platforms for details.'
Expand Down

0 comments on commit 68fbb36

Please sign in to comment.