discontinue odd "-build" suffix altogether (see also f51b0b54b20b, bec95e287d26, 6b45a1568637);
authorwenzelm
Sun, 26 Jan 2025 22:45:57 +0100
changeset 81988 846293abd12d
parent 81983 e86a7b8d7ada
child 81989 96afb0707532
discontinue odd "-build" suffix altogether (see also f51b0b54b20b, bec95e287d26, 6b45a1568637);
src/Pure/Admin/build_release.scala
--- a/src/Pure/Admin/build_release.scala	Sun Jan 26 13:27:41 2025 +0000
+++ b/src/Pure/Admin/build_release.scala	Sun Jan 26 22:45:57 2025 +0100
@@ -45,10 +45,8 @@
     val isabelle_archive: Path = dist_dir + isabelle.tar.gz
     val isabelle_library_archive: Path = dist_dir + Path.explode(dist_name + "_library.tar.gz")
 
-    def other_isabelle(dir: Path, suffix: String = "-build"): Other_Isabelle =
-      Other_Isabelle(dir + isabelle,
-        isabelle_identifier = dist_name + suffix,
-        progress = progress)
+    def other_isabelle(dir: Path): Other_Isabelle =
+      Other_Isabelle(dir + isabelle, isabelle_identifier = dist_name, progress = progress)
 
     def make_announce(id: String): Unit = {
       if (release_name.isEmpty) {
@@ -845,7 +843,7 @@
           val bundle_path = context.dist_dir + Path.basic(bundle)
           execute_tar(tmp_dir, "-xzf " + File.bash_path(bundle_path))
 
-          val other_isabelle = context.other_isabelle(tmp_dir, suffix = "")
+          val other_isabelle = context.other_isabelle(tmp_dir)
 
           Isabelle_System.make_directory(other_isabelle.etc)
           File.write(other_isabelle.etc_settings, "ML_OPTIONS=\"--minheap 1000 --maxheap 4000\"\n")