Skip to content

Commit fea35c2

Browse files
author
MohitMaliFtechiz
committed
Since linux libzim tar file issue is fixed so we have removed the temporary url
1 parent 1a1bd73 commit fea35c2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ dependencies {
7676

7777
ext.libkiwix_base_url = 'https://download.kiwix.org/nightly'
7878
ext.libzim_base_url = 'https://download.openzim.org/nightly'
79-
// temporary url for libzim linux variant zim file, Once https://github.com/openzim/libzim/issues/772 fixed, then we can remove this
80-
ext.linux_libzim_base_url = 'https://download.openzim.org/nightly/2023-03-20'
8179

8280
ext.libkiwix_version = project.properties["libkiwix_version"] ?: ""
8381
ext.libzim_version = project.properties["libzim_version"] ?: ""
@@ -88,7 +86,7 @@ task downloadLibzimSoAndHeaderFiles(type: Download) {
8886
libzim_base_url + '/libzim_android-arm64.tar.gz',
8987
libzim_base_url + '/libzim_android-x86.tar.gz',
9088
libzim_base_url + '/libzim_android-x86_64.tar.gz',
91-
linux_libzim_base_url + '/libzim_linux-x86_64-2023-03-20.tar.gz'
89+
libzim_base_url + '/libzim_linux-x86_64.tar.gz'
9290
])
9391
dest buildDir
9492
overwrite true
@@ -108,7 +106,7 @@ task unzipLibzim(type: Copy) {
108106
from tarTree(buildDir.path + "/libzim_android-x86_64.tar.gz")
109107
into buildDir
110108
// unzip linux x86_64
111-
from tarTree(buildDir.path + "/libzim_linux-x86_64-2023-03-20.tar.gz")
109+
from tarTree(buildDir.path + "/libzim_linux-x86_64.tar.gz")
112110
into buildDir
113111
}
114112

0 commit comments

Comments
 (0)