Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
remove debug loglevel (#2137)
Browse files Browse the repository at this point in the history
  • Loading branch information
luclu authored and evertonfraga committed Apr 12, 2017
1 parent 0df9e1b commit a5e0186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpTasks/building.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ gulp.task('build-nsis', (cb) => {
const versionParts = version.split('.');
const versionString = `-DVERSIONMAJOR=${versionParts[0]} -DVERSIONMINOR=${versionParts[1]} -DVERSIONBUILD=${versionParts[2]}`;

const cmdString = `makensis -V3 ${versionString} ${typeString} ${appNameString} scripts/windows-installer.nsi`;
const cmdString = `makensis ${versionString} ${typeString} ${appNameString} scripts/windows-installer.nsi`;

exec(cmdString, cb);
});

0 comments on commit a5e0186

Please sign in to comment.