use absolute paths for moving items

This commit is contained in:
David Refoua 2022-10-14 22:01:34 +03:30 committed by GitHub
parent eede47bfad
commit ee01f26680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,10 +50,11 @@ function Create-Archive($source, $target, $params) {
function Flatten-Directory($name) {
$name = Resolve-Path $name
$child = (Get-Childitem $name)[0]
$moving = $($name)_moving
Write-Verbose "Moving the '$child' directory's content to '$name'"
Rename-Item $name -NewName "$($name)_moving"
Move-Item -Path "$($name)_moving\$child" -Destination $name
Remove-Item -Recurse "$($name)_moving"
Rename-Item "$name" -NewName "$moving"
Move-Item -Path "$child" -Destination "$name"
Remove-Item -Recurse "$moving"
}
function Digest-Hash($path) {