-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Product name for linux targets takes from app/package.json, cant change it dynamically #1567
Comments
Where incorrect name is used? |
it's used for build naming, so my example "build --config.productName=Example" - will create on windows build with name "Example-{version}.exe" but on linux it will be "{name-from-app/package.json}-{version}.deb" |
By intention. According to Linux convention. See also #775. |
Is there some way for dynamically add custom string to linux build names without "app/package.json" change? Im looking for a way to marker my builds depending on git branch from which it made. (dev, prod etc) |
|
In case of linux data for builds names takes from app/package.json "name" and "version" values unlike of mac and window, where it coming from root package.json. So I can't dynamically change build name like for nsis, for example "build --config.productName=Example"
The text was updated successfully, but these errors were encountered: