2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-20 20:32:28 +00:00

Fix bug in console warning when not overwritting an existing executable

This commit is contained in:
Jia Hao 2016-01-26 00:37:00 +08:00
parent d74c368627
commit 56b7abacf8

View File

@ -63,8 +63,8 @@ function buildApp(options, callback) {
(appPathArray, callback) => { (appPathArray, callback) => {
// somehow appPathArray is a 1 element array // somehow appPathArray is a 1 element array
if (appPathArray.length !== 1) { if (appPathArray.length > 1) {
console.warn('Warning: Packaged app path contains more than one element', appPathArray); console.warn('Warning: Packaged app path contains more than one element:', appPathArray);
} }
const appPath = appPathArray[0]; const appPath = appPathArray[0];
callback(null, appPath); callback(null, appPath);