1
0
Fork 0
pdfbox/scripts/make-xar.xq
Andy Bunce 96ad5101d9
Some checks failed
Run BaseX Tests / test (push) Failing after 24s
[mod] xar
2025-02-03 14:15:01 +00:00

8 lines
339 B
Text

import module namespace build = 'urn:quodatum:build1' at 'build.xqm';
declare variable $base:= file:resolve-path("../",static-base-uri())=>trace("base ");
let $xar:=build:xar-create($base)
let $output-file := file:resolve-path("dist/pdfbox.xar",$base)
return (build:write-binary($output-file, $xar),
trace($output-file,"zar: "))