Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.

Commit

Permalink
Expand installer success/error message with version and arch
Browse files Browse the repository at this point in the history
  • Loading branch information
robflop committed Oct 8, 2017
1 parent 218cf43 commit 2330dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makeInstallers.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ const settings = {

return createWindowsInstaller(settings)
.then(() => {
console.log('Installer successfully created.');
console.log(`Installer successfully created for version ${version} on win32-${arch}`);
process.exit();
})
.catch(e => {
console.log(`An error occurred creating the installer: ${e.message}`);
console.log(`An error occurred creating the installer for version ${version} on win32-${arch}: ${e.message}`);
process.exit();
});

0 comments on commit 2330dff

Please sign in to comment.