This will redirect to the desired version of the bootstrap zip in
bintray.
This commit is contained in:
Fredrik Fornwall 2019-04-08 19:06:57 +02:00
parent 10fe238ddb
commit 6218d08037
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ final class TermuxInstaller {
private static URL determineZipUrl() throws MalformedURLException {
String archName = determineTermuxArchName();
String url = Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
? "https://bintray.com/termux/bootstrap/download_file?file_path=bootstrap-" + archName + ".zip"
? "https://termux.org/bootstrap-" + archName + ".zip"
: "https://termux.net/bootstrap/bootstrap-" + archName + ".zip";
return new URL(url);
}