Skip to content

Commit 66d0292

Browse files
authored
Fix unzipping 'lib' directory (#1600)
1 parent e53f51c commit 66d0292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Scripts/Install-IronPython.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ if (-not $unzipDir) {
9999

100100
# Copy files into place
101101
Copy-Item -Path (Join-Path $unzipDir $Framework "*") -Destination $Path -Recurse
102-
Copy-Item -Path (Join-Path $unzipDir "lib") -Destination $Path
102+
Copy-Item -Path (Join-Path $unzipDir "lib") -Destination $Path -Recurse
103103

104104
# Prepare startup scripts
105105
if ($Framework -notlike "net4*") {

0 commit comments

Comments
 (0)