remove whitespace

This commit is contained in:
humanoid2050 2023-04-07 20:04:25 -04:00
parent a7a025dc4c
commit 4190e79c15
6 changed files with 6 additions and 16 deletions

View file

@ -45,5 +45,4 @@ RUN apk add --no-cache --virtual .build-deps \
#extensive use of the cache.
FROM certbot as certbot-plugin
COPY --from=plugin-src . /opt/certbot/src/plugin
RUN python tools/pip_install.py --no-cache-dir --editable /opt/certbot/src/plugin
RUN python tools/pip_install.py --no-cache-dir --editable /opt/certbot/src/plugin

View file

@ -53,6 +53,4 @@ BuildAndLoadByArch() {
for ARCH in "${REQUESTED_ARCH_ARRAY[@]}"; do
BuildAndLoadByArch "$ARCH"
done
done

View file

@ -43,6 +43,4 @@ for TAG_ARCH in "${REQUESTED_ARCH_ARRAY[@]}"; do
for PLUGIN in "${CERTBOT_PLUGINS[@]}"; do
DeployImage "$PLUGIN" "$TAG_ARCH"
done
done
done

View file

@ -45,7 +45,4 @@ DeployManifest() {
DeployManifest certbot
for PLUGIN in "${CERTBOT_PLUGINS[@]}"; do
DeployManifest "$PLUGIN"
done
done

View file

@ -55,9 +55,7 @@ arch2platform() {
esac
}
ParseArgs() {
export TAG_VER="$1"
if [ -z "$TAG_VER" ]; then
echo "We cannot tag Docker images with an empty string!" >&2
@ -109,4 +107,4 @@ CreateBuilder() {
docker buildx rm certbot_builder || true
# create the builder instance
docker buildx create --name certbot_builder --driver docker-container --driver-opt=network=host --bootstrap
}
}

View file

@ -40,4 +40,4 @@ for TAG_ARCH in "${REQUESTED_ARCH_ARRAY[@]}"; do
for PLUGIN in "${CERTBOT_PLUGINS[@]}"; do
TestImage "$PLUGIN" "$TAG_ARCH" "$TAG_VER"
done
done
done