Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/docker/core/hooks/pre_build')
-rwxr-xr-xtools/docker/core/hooks/pre_build10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/docker/core/hooks/pre_build b/tools/docker/core/hooks/pre_build
new file mode 100755
index 000000000..723e35161
--- /dev/null
+++ b/tools/docker/core/hooks/pre_build
@@ -0,0 +1,10 @@
+#!/bin/bash
+set -ex
+
+WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
+source "$WORK_DIR/../../lib/common"
+
+RegisterQemuHandlers
+for TARGET_ARCH in "${ALL_TARGET_ARCH[@]}"; do
+ DownloadQemuStatic "${TARGET_ARCH}"
+done