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
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
Clearly marked as advanced feature, yada yada, even undocumented for now if maintainers wish, but there's two issues preventing windows installer builds on Linux in the current template:
Usage of backspace in paths, means globs like resources\**\* yield 0 results, all the app's files are missing - replacing with / fixes that.
ideally grunt-electron-installer would work around these out of the box, but in the meantime being able to pass a path to a template.nuspec file to be used would be very very cool.
The text was updated successfully, but these errors were encountered:
we should also make grunt-electron-installer silently fix this up
Right, but I saw no good immediate option (either use regular expressions and risk overshooting, or parse xml + re-emit it and then you have a dependency on an XML parser, an XML generator :/)
Or.. two sets of template? Or make the whole path list be a 'variable' in the template and generate that from the task itself?
The part that annoys me the most is having to drop 'LICENSE' because of that NuGet bug that only happens on Mono. 😢
Clearly marked as advanced feature, yada yada, even undocumented for now if maintainers wish, but there's two issues preventing windows installer builds on Linux in the current template:
resources\**\*
yield 0 results, all the app's files are missing - replacing with/
fixes that.LICENSE
, generates an invalid[Content-Types].xml
file, cf. Update-Mono generates invalid [Content-Types].xml Squirrel/Squirrel.Windows#520ideally grunt-electron-installer would work around these out of the box, but in the meantime being able to pass a path to a
template.nuspec
file to be used would be very very cool.The text was updated successfully, but these errors were encountered: