diff options
| author | levlam <levlam@telegram.org> | 2024-03-24 20:36:57 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2024-03-24 20:36:57 +0300 |
| commit | fcfdd26a27668e7ab990bd6f10aff0f1de2c5c55 (patch) | |
| tree | 9b8e7ff1262cfb7a72d46e3f475d329a1332193b /build.html | |
| parent | 07a29ef56b45466b32b313ce5f53696509deed52 (diff) | |
Remove --update-cache parameter from Alpine build instructions.
Diffstat (limited to 'build.html')
| -rw-r--r-- | build.html | 4 |
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': |
