Skip to content

Commit 9f73c69

Browse files
committed
Move podman binary from podman-<version> dir to top level dir
This should fix ``` + unzip -o -d podman-remote/mac/ podman-remote/mac/podman.zip Archive: podman-remote/mac/podman.zip creating: podman-remote/mac/podman-3.2.3/ + cp podman-remote/mac/podman crc_hyperkit_461/ cp: cannot stat 'podman-remote/mac/podman': No such file or directory ```
1 parent 51c1ce2 commit 9f73c69

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

createdisk-library.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,11 +294,13 @@ function download_podman() {
294294
mkdir -p podman-remote/mac
295295
curl -L https://github.com/containers/podman/releases/download/v${version}/podman-remote-release-darwin.zip -o podman-remote/mac/podman.zip
296296
${UNZIP} -o -d podman-remote/mac/ podman-remote/mac/podman.zip
297+
mv podman-remote/mac/podman-${version}/podman podman-remote/mac
297298
fi
298299

299300
if [ -n "${SNC_GENERATE_WINDOWS_BUNDLE}" ]; then
300301
mkdir -p podman-remote/windows
301302
curl -L https://github.com/containers/podman/releases/download/v${version}/podman-remote-release-windows.zip -o podman-remote/windows/podman.zip
302303
${UNZIP} -o -d podman-remote/windows/ podman-remote/windows/podman.zip
304+
mv podman-remote/windows/podman-${version}/podman.exe podman-remote/windows
303305
fi
304306
}

0 commit comments

Comments
 (0)