Skip to content

Commit d5c053f

Browse files
committed
Corrected copying of the resources.
1 parent 59754d9 commit d5c053f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magick.Native/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function copyLibraries($source, $target) {
137137

138138
function copyResource($source, $target, $quantum) {
139139
[void](New-Item -ItemType directory -Path "$target\Release$quantum")
140-
Copy-Item "$source\**\content\resources\Release$quantum\*.xml" -Force "$target\Release$quantum"
140+
Copy-Item "$source\**\content\resources\Release$quantum\*" "$target\Release$quantum" -Recurse -Force
141141
}
142142

143143
function copyResources($source, $target) {

0 commit comments

Comments
 (0)