electron-userland / electron-builder

A complete solution to package and build a ready for distribution Electron app with “auto update” support out of the box
https://www.electron.build
MIT License
13.69k stars 1.74k forks source link

.deb target: created file gets its name converted to lowercase #4386

Closed warpdesign closed 4 years ago

warpdesign commented 5 years ago

Here is my electron builder config:

    "build": {
        "productName": "React-Explorer",
        "appId": "reactexplorer",
        "mac": {
            "gatekeeperAssess": false,
            "darkModeSupport": true,
            "icon": "icon.icns"
        },
        "win": {
            "icon": "icon.ico"
        },
        "linux": {
            "synopsis": "React-based FileManager",
            "description": "Plugin-based file explorer written with React",
            "category": "FileManager",
            "target": [
                "deb",
                "AppImage"
            ]
        },
        "files": [
            "build/**/*"
        ]
    },

Here are the files created:

React-Explorer Setup 2.1.1.exe
react-explorer_2.1.1_amd64.deb
React-Explorer-2.1.1-mac.zip
React-Explorer-2.1.1.AppImage
React-Explorer-2.1.1.dmg
React-Explorer-2.1.1.dmg.blockmap

As you can see, for some reason, the deb's filename is converted to lowercase.

I'm on macOS/Catalina.

stale[bot] commented 4 years ago

Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.