Skip to content

Commit

Permalink
fix: Copy files in powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 8, 2023
1 parent 0256ad8 commit 4053687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v1/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ foreach ($f in $exes) {
err "$f already exists in $dest"
} else {
New-Item -ItemType directory -Path $dest -Force
Copy-Item (Join-Path $td $f) -Destination $dest
Copy-Item $f -Destination $dest
}
}

Expand Down

0 comments on commit 4053687

Please sign in to comment.