File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,6 @@ dependencies {
76
76
77
77
ext. libkiwix_base_url = ' https://download.kiwix.org/nightly'
78
78
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'
81
79
82
80
ext. libkiwix_version = project. properties[" libkiwix_version" ] ?: " "
83
81
ext. libzim_version = project. properties[" libzim_version" ] ?: " "
@@ -88,7 +86,7 @@ task downloadLibzimSoAndHeaderFiles(type: Download) {
88
86
libzim_base_url + ' /libzim_android-arm64.tar.gz' ,
89
87
libzim_base_url + ' /libzim_android-x86.tar.gz' ,
90
88
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'
92
90
])
93
91
dest buildDir
94
92
overwrite true
@@ -108,7 +106,7 @@ task unzipLibzim(type: Copy) {
108
106
from tarTree(buildDir. path + " /libzim_android-x86_64.tar.gz" )
109
107
into buildDir
110
108
// 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" )
112
110
into buildDir
113
111
}
114
112
You can’t perform that action at this time.
0 commit comments