Fix wget command to work in non-interactive Docker build

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-29 19:44:37 +00:00
parent b784fef82b
commit f9219615b3

View File

@@ -14,7 +14,7 @@ cd /kernel/build
# Download kernel source
echo "Downloading kernel ${KERNEL_VERSION}..."
wget -q --show-progress https://cdn.kernel.org/pub/linux/kernel/v${KERNEL_MAJOR}.x/linux-${KERNEL_VERSION}.tar.xz
wget https://cdn.kernel.org/pub/linux/kernel/v${KERNEL_MAJOR}.x/linux-${KERNEL_VERSION}.tar.xz
# Extract
echo "Extracting kernel source..."