Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Grunt doesn't create an installer, but shows no error #124

Open
panther99 opened this issue Jun 13, 2016 · 0 comments
Open

Grunt doesn't create an installer, but shows no error #124

panther99 opened this issue Jun 13, 2016 · 0 comments

Comments

@panther99
Copy link

panther99 commented Jun 13, 2016

I've tried to create Windows installer for my Electron application but when I run grunt create-windows-installer it just shows this:

Running "create-windows-installer:x64" (create-windows-installer) task

Running "create-windows-installer:ia32" (create-windows-installer) task

Done, without errors.

When I check both directories there's nothing. Here is my Gruntfile.

module.exports = function(grunt) {

    grunt.initConfig({
        'create-windows-installer': {
          x64: {
            appDirectory: '/',
            outputDirectory: '/tmp/build/64',
            authors: 'sfsfdadf',
            exe: 'mcalc-x64.exe'
          },
          ia32: {
            appDirectory: '/',
            outputDirectory: '/tmp/build/32',
            authors: 'sfsfdadf',
            exe: 'mcalc-x86.exe'
          }
        }
    });

    grunt.loadNpmTasks('grunt-electron-installer');

    grunt.registerTask('default', ['create-windows-installer']);

}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant