tuned;
authorwenzelm
Tue, 05 Aug 2025 22:24:29 +0200
changeset 82951 c5b07e7ab7f3
parent 82950 a4e457dc735e
child 82952 430dcd883bbc
tuned;
src/Pure/Build/build.scala
--- a/src/Pure/Build/build.scala	Tue Aug 05 22:22:11 2025 +0200
+++ b/src/Pure/Build/build.scala	Tue Aug 05 22:24:29 2025 +0200
@@ -729,7 +729,8 @@
 
       val blobs =
         blobs_files0.map { case (command_offset, name0) =>
-          val name = migrate_file(name0)
+          val node_name = Document.Node.Name(migrate_file(name0))
+          val src_path = Path.explode(name0)
 
           val file = read_source_file(name0)
           val bytes = file.bytes
@@ -737,7 +738,7 @@
           val chunk = Symbol.Text_Chunk(text)
           val content = Some((file.digest, chunk))
 
-          Command.Blob(command_offset, Document.Node.Name(name), Path.explode(name0), content) ->
+          Command.Blob(command_offset, node_name, src_path, content) ->
             Document.Blobs.Item(bytes, text, chunk, command_offset = command_offset)
         }