Skip to content

Commit

Permalink
rollback previous behivor, for containers/podman#24557 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
specter119 committed Feb 17, 2025
1 parent 81feba5 commit 8c3b143
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions bucket/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ architecture:
hash: 0eb2a34db3f5ec55529eb91b963bca4bbc8d7b5a8480700c77dc359bdb51b87e
extract_dir: podman-5.4.0
pre_install: |
Move-Item "$dir\usr\bin\*" "$dir" -Force
Remove-Item "$dir\usr" -Recurse -Force
Move-Item "$dir\docs\*" "$dir" -Force
Remove-Item "$dir\docs" -Recurse -Force
if (Test-Path "$dir\usr\bin") {
Move-Item "$dir\usr\bin\*" "$dir" -Force
Remove-Item "$dir\usr" -Recurse -Force
}
if (Test-Path "$dir\docs") {
Move-Item "$dir\docs\*" "$dir" -Force
Remove-Item "$dir\docs" -Recurse -Force
}
bin: podman.exe
notes: |
Please add the Podman installation directory to your system level PATH environment variable for the docker socket creation features working.
Expand Down

0 comments on commit 8c3b143

Please sign in to comment.