From fc7b23686be9bdf8b9d78d1442405556858b4703 Mon Sep 17 00:00:00 2001 From: Fritz Windisch Date: Mon, 7 Aug 2023 16:54:01 +0200 Subject: [PATCH] Patch further jetbrains changes --- scripts/patch_cmake.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/patch_cmake.py b/scripts/patch_cmake.py index 7f25445..e5b7e39 100644 --- a/scripts/patch_cmake.py +++ b/scripts/patch_cmake.py @@ -10,7 +10,10 @@ print("Patching "+input+" to use spotify for downloads again...") f = open(input, "r") result = "" for x in f: - result += x.replace("https://cache-redirector.jetbrains.com/intellij-jbr/", "https://cef-builds.spotifycdn.com/") + result += x.replace("https://cache-redirector.jetbrains.com/intellij-jbr/", "https://cef-builds.spotifycdn.com/") \ + .replace("_minimal", "") \ + .replace(".zip", ".tar.bz2") \ + .replace(".checksum", ".sha1") f.close()