File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,15 @@ mkdir -p /assets
2525
2626# overwrite default name of shim binary; use the name of shim resource instead
2727# to enable installing multiple versions of the same shim
28- curl -sL " ${SHIM_LOCATION} " | tar --transform " s/containerd-shim-.*/containerd-shim-${SHIM_NAME} /" -xzf - -C /assets
28+ curl -Lo " containerd-shim-${SHIM_NAME} " " ${SHIM_LOCATION} "
29+ ls -lah " containerd-shim-${SHIM_NAME} "
30+
31+ log " curl --version: $( curl --version) " " DEBUG"
32+ log " tar --version: $( tar --version) " " DEBUG"
33+ log " md5sum: $( md5sum containerd-shim-${SHIM_NAME} ) " " DEBUG"
34+ log " sha256sum: $( sha256sum containerd-shim-${SHIM_NAME} ) " " DEBUG"
35+
36+ tar -xzf " containerd-shim-${SHIM_NAME} " -C /assets
2937log " download successful:" " INFO"
3038
3139ls -lah /assets
You can’t perform that action at this time.
0 commit comments