Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Fix curl extra option (fixup)
Browse files Browse the repository at this point in the history
  • Loading branch information
gberche-orange committed Sep 25, 2023
1 parent 5c39f99 commit 24d13c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addblob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function addBlobOnChecksumChange() {
if [ "${blob_checksum}" != "sha256:${src_checksum}" ]; then
bosh add-blob ${src} ${target}
else
echo "skipping blob creation with existing checksum: ${src_checksum}"
echo "skipping blob creation for ${target} with existing checksum: ${src_checksum}"
fi
}

Expand All @@ -35,7 +35,7 @@ popd
addBlobOnChecksumChange src/github.com/containerd/nerdctl/nerdctl nerdctl/nerdctl

pushd src
curl -L https://dl.k8s.io/release/v1.24.9/bin/linux/amd64/kubectl --output ./src/kubectl
curl -LO https://dl.k8s.io/release/v1.24.9/bin/linux/amd64/kubectl
chmod ugo+x kubectl
popd
addBlobOnChecksumChange src/kubectl kubectl/kubectl
Expand Down

0 comments on commit 24d13c8

Please sign in to comment.