Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.4.0
-
None
-
None
Description
Putting the following line in the config will will cause an error: "Source directory does not exist: Square44x44Logo_100.scale"
<icon src="res/Windows/Square44x44Logo_100.png" target="SmallIcon"/>
In prepare.js, `copyImages` calls `mapImageResources` but subdirectory information was lost. `copyMrtImage` in an earlier commit preserved this information (shown in the link below), but it was lost in a refactoring.
This was missed by a defect in the `copyIcons` test in Prepare.Win10.spec.js:
`readdirSync` was spied on to return an array of file paths when it actually only returns an array of the filenames. This caused the `copyIcons` spec to pass but the code failed when used.
I have a fix ready for github.