diff --git a/scripts/kernels/debian.sh b/scripts/kernels/debian.sh index 2b2501490..ca0a5adc5 100755 --- a/scripts/kernels/debian.sh +++ b/scripts/kernels/debian.sh @@ -21,5 +21,5 @@ for KERN_DEB in $KERNELS; do # Doesn't exist build and push docker build -t ${REPO}:${VERSION} -f Dockerfile.deb --no-cache \ --build-arg DEB_URLS="${URLS}" . && - DOCKER_CONTENT_TRUST=1 docker push ${REPO}:${VERSION}) + DOCKER_CONTENT_TRUST=1 docker push ${REPO}:${VERSION} done diff --git a/scripts/kernels/ubuntu.sh b/scripts/kernels/ubuntu.sh index 2609af237..ea285cd47 100755 --- a/scripts/kernels/ubuntu.sh +++ b/scripts/kernels/ubuntu.sh @@ -25,10 +25,10 @@ for KERN_DEB in $KERNELS; do # HDR_ARCH_DEB=$(echo $LINKS | \ # grep -o "linux-headers-${VERSION}-generic_[^ ]\+_${ARCH}\.deb") - URLS="${BASE_URL}/${KERN_DEB} ${BASE_URL}/${EXTRA_DEB} ${BASE_URL}/${HDR_DEB} ${BASE_URL}/${HDR_ARCH_DEB}" + URLS="${BASE_URL}/${KERN_DEB} ${BASE_URL}/${EXTRA_DEB}" # Doesn't exist build and push docker build -t ${REPO}:${VERSION} -f Dockerfile.deb --no-cache \ --build-arg DEB_URLS="${URLS}" . && - DOCKER_CONTENT_TRUST=1 docker push ${REPO}:${VERSION}) + DOCKER_CONTENT_TRUST=1 docker push ${REPO}:${VERSION} done