Write conventional end-of-archive records
This commit is contained in:
parent
610bf0ca01
commit
4ffdd4610d
|
@ -95,4 +95,7 @@
|
||||||
(unless (null? inputs)
|
(unless (null? inputs)
|
||||||
(let ((filename (string-append (number->string i) ".md")))
|
(let ((filename (string-append (number->string i) ".md")))
|
||||||
(tar-write-file filename (car inputs))
|
(tar-write-file filename (car inputs))
|
||||||
(loop (+ i 1) (cdr inputs))))))
|
(loop (+ i 1) (cdr inputs)))))
|
||||||
|
(let ((nulls (make-bytevector 512 0)))
|
||||||
|
(write-bytevector nulls)
|
||||||
|
(write-bytevector nulls)))
|
||||||
|
|
Loading…
Reference in New Issue