src/Tools/Find_Facts/src/find_facts.scala
changeset 81897 794591b2ea97
parent 81895 9d1003cb9844
child 81898 a70e471b2582
--- a/src/Tools/Find_Facts/src/find_facts.scala	Wed Jan 22 10:53:20 2025 +0100
+++ b/src/Tools/Find_Facts/src/find_facts.scala	Wed Jan 22 11:23:35 2025 +0100
@@ -585,11 +585,15 @@
     isabelle_home: Path = Path.current,
     options: List[Options.Spec] = Nil,
     dirs: List[Path] = Nil,
-    clean: Boolean = false
+    clean: Boolean = false,
+    no_build: Boolean = false,
+    verbose: Boolean = false,
   ): String = {
     ssh.bash_path(Isabelle_Tool.exe(isabelle_home)) + " find_facts_index" +
       dirs.map(dir => " -d " + ssh.bash_path(dir)).mkString +
       if_proper(clean, " -c") +
+      if_proper(no_build, " -n") +
+      if_proper(verbose, " -v") +
       Options.Spec.bash_strings(options, bg = true) +
       sessions.map(session => " " + session).mkString
   }