mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-16 07:46:31 +00:00
Fix Windows not asking for elevation when packaged
The issue is that the `windosu-elevate.cmd` script that `windosu` internally calls to perform the elevation. After some investigation this is due one of our ignore regular expressions used to filter out unnecessary files from the production package: ``` (.*).md ``` The period matches anything but a space, causing file ending in `cmd` to be matched, and therefore excluded from the package. Since the intention of this regex was to match a literal period, escaping does the trick. Partly-Fixes: https://github.com/resin-io/herostratus/issues/20
This commit is contained in:
parent
f1bd700507
commit
c4a446cb6a
@ -1,7 +1,7 @@
|
|||||||
LICENSE
|
LICENSE
|
||||||
Makefile
|
Makefile
|
||||||
package.ignore
|
package.ignore
|
||||||
(.*).md
|
(.*)\.md
|
||||||
appveyor.yml
|
appveyor.yml
|
||||||
bower.json
|
bower.json
|
||||||
gulpfile.js
|
gulpfile.js
|
||||||
|
Loading…
x
Reference in New Issue
Block a user