You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"win": { "target": [ "nsis", "portable" ], "icon": "build/win_icon.ico", "artifactName": "${productName}-Setup-${version}-win-${arch}.${ext}" }
The current configuration will generate files with duplicate names (causing overwriting). To resolve this, please add the ${target} variable in the artifactName field:
"win": { "target": [ "nsis", "portable" ], "icon": "build/win_icon.ico", "artifactName": "${productName}-Setup-${version}-win-${arch}.${ext}" }
The current configuration will generate files with duplicate names (causing overwriting). To resolve this, please add the ${target} variable in the artifactName field:
"artifactName": "${productName}-Setup-${version}-win-${arch}-${target}.${ext}"
This ensures files are uniquely named based on the build target type (e.g., nsis or portable), preventing overwriting conflicts.
The text was updated successfully, but these errors were encountered: