tuned spelling;
authorwenzelm
Sat, 25 May 2024 20:10:17 +0200
changeset 80199 987424bebeb9
parent 80198 7883f221d6d3
child 80200 5f053991315c
tuned spelling;
src/Pure/Build/build_cluster.scala
--- a/src/Pure/Build/build_cluster.scala	Sat May 25 20:08:01 2024 +0200
+++ b/src/Pure/Build/build_cluster.scala	Sat May 25 20:10:17 2024 +0200
@@ -173,15 +173,15 @@
 
     val build_cluster_identifier: String = options.string("build_cluster_identifier")
     val build_cluster_root: Path = Path.explode(options.string("build_cluster_root"))
-    val built_cluster_isabelle_home: Path = build_cluster_root + Path.explode("isabelle")
+    val build_cluster_isabelle_home: Path = build_cluster_root + Path.explode("isabelle")
 
     lazy val build_cluster_isabelle: Other_Isabelle =
-      Other_Isabelle(built_cluster_isabelle_home,
+      Other_Isabelle(build_cluster_isabelle_home,
         isabelle_identifier = build_cluster_identifier, ssh = ssh)
 
     def sync(): Other_Isabelle = {
       val context = Rsync.Context(ssh = ssh)
-      val target = built_cluster_isabelle_home
+      val target = build_cluster_isabelle_home
       if (Mercurial.Hg_Sync.ok(Path.ISABELLE_HOME)) {
         val source = File.standard_path(Path.ISABELLE_HOME)
         Rsync.exec(context, clean = true,
@@ -203,7 +203,7 @@
     def benchmark(): Unit = {
       val script =
         Build_Benchmark.benchmark_command(options, host, ssh = ssh,
-          isabelle_home = built_cluster_isabelle_home)
+          isabelle_home = build_cluster_isabelle_home)
       build_cluster_isabelle.bash(script).check
     }
 
@@ -220,7 +220,7 @@
           ssh = ssh,
           build_options = build_options.toList,
           build_id = build_context.build_uuid,
-          isabelle_home = built_cluster_isabelle_home,
+          isabelle_home = build_cluster_isabelle_home,
           dirs = Path.split(host.dirs).map(build_cluster_isabelle.expand_path),
           quiet = true)
       build_cluster_isabelle.bash(script).check