src/Pure/Admin/build_pdfjs.scala
changeset 76518 b30b8e23383c
parent 75706 f719bbee1721
child 76530 2bf13b30b98e
--- a/src/Pure/Admin/build_pdfjs.scala	Sun Nov 13 21:59:19 2022 +0100
+++ b/src/Pure/Admin/build_pdfjs.scala	Sun Nov 20 23:37:54 2022 +0100
@@ -31,8 +31,8 @@
     /* component name */
 
     val component = "pdfjs-" + version
-    val component_dir = Isabelle_System.new_directory(target_dir + Path.basic(component))
-    progress.echo("Component " + component_dir)
+    val component_dir =
+      Components.Directory.create(target_dir + Path.basic(component), progress = progress)
 
 
     /* download */
@@ -42,14 +42,13 @@
       Isabelle_System.download_file(download_url + "/pdfjs-" + version + "-legacy-dist.zip",
         archive_file, progress = progress)
       Isabelle_System.bash("unzip -x " + File.bash_path(archive_file),
-        cwd = component_dir.file).check
+        cwd = component_dir.path.file).check
     }
 
 
     /* settings */
 
-    val etc_dir = Isabelle_System.make_directory(component_dir + Path.basic("etc"))
-    File.write(etc_dir + Path.basic("settings"),
+    File.write(component_dir.settings,
       """# -*- shell-script -*- :mode=shellscript:
 
 ISABELLE_PDFJS_HOME="$COMPONENT"
@@ -58,7 +57,7 @@
 
     /* README */
 
-    File.write(component_dir + Path.basic("README"),
+    File.write(component_dir.README,
       """This is PDF.js from
 """ + download_url + """