src/Pure/Admin/build_history.scala
changeset 64189 dfb63036c4f6
parent 64188 f88bae1922c4
child 64193 7a7e370e2523
equal deleted inserted replaced
64188:f88bae1922c4 64189:dfb63036c4f6
   178 
   178 
   179 
   179 
   180       /* build */
   180       /* build */
   181 
   181 
   182       if (multicore_base && !first_build && isabelle_base_log.is_dir)
   182       if (multicore_base && !first_build && isabelle_base_log.is_dir)
   183         other_isabelle.copy_dir(isabelle_base_log, isabelle_output_log)
   183         Isabelle_System.copy_dir(isabelle_base_log, isabelle_output_log)
   184 
   184 
   185       val build_start = Date.now()
   185       val build_start = Date.now()
   186       val res =
   186       val res =
   187         other_isabelle("build -v " + File.bash_args(build_args), redirect = true, echo = verbose)
   187         other_isabelle("build -v " + File.bash_args(build_args), redirect = true, echo = verbose)
   188       val build_end = Date.now()
   188       val build_end = Date.now()
   234 
   234 
   235 
   235 
   236       /* next build */
   236       /* next build */
   237 
   237 
   238       if (multicore_base && first_build && isabelle_output_log.is_dir)
   238       if (multicore_base && first_build && isabelle_output_log.is_dir)
   239         other_isabelle.copy_dir(isabelle_output_log, isabelle_base_log)
   239         Isabelle_System.copy_dir(isabelle_output_log, isabelle_base_log)
   240 
   240 
   241       first_build = false
   241       first_build = false
   242 
   242 
   243       res
   243       res
   244     }
   244     }