aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.html
diff options
context:
space:
mode:
Diffstat (limited to 'build.html')
-rw-r--r--build.html4
1 files 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 <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':