Remove --update-cache parameter from Alpine build instructions.

This commit is contained in:
levlam 2024-03-24 20:36:57 +03:00
parent 07a29ef56b
commit fcfdd26a27
1 changed files with 2 additions and 2 deletions

View File

@ -728,7 +728,7 @@ function onOptionsChanged() {
if (os_windows) {
pre_text.push('Download and install <a href="https://www.oracle.com/technetwork/java/javase/downloads/index.html">JDK</a>.');
} 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':