From fcfdd26a27668e7ab990bd6f10aff0f1de2c5c55 Mon Sep 17 00:00:00 2001 From: levlam Date: Sun, 24 Mar 2024 20:36:57 +0300 Subject: [PATCH] Remove --update-cache parameter from Alpine build instructions. --- build.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.html b/build.html index b3829c87a..79d89239d 100644 --- a/build.html +++ b/build.html @@ -728,7 +728,7 @@ function onOptionsChanged() { if (os_windows) { pre_text.push('Download and install JDK.'); } else if (os_linux && linux_distro === 'Alpine') { - pre_text.push('Add community repository for your Alpine version (not edge) in /etc/apk/repositories. For example, you can do it through vim, preliminary installing it via "apk add --update vim".'); + pre_text.push('Add community repository for your Alpine version (not edge) in /etc/apk/repositories. For example, you can do it through vim, preliminary installing it via "apk add vim".'); } } if (os_linux && linux_distro === 'Other') { @@ -827,7 +827,7 @@ function onOptionsChanged() { if (target === 'JNI') { packages += ' openjdk8'; } - commands.push(sudo + 'apk add --update ' + packages); + commands.push(sudo + 'apk add ' + packages); break; case 'CentOS 7': case 'CentOS 8':