mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
fix path adjustment of inline test files in snow-chibi package command
This commit is contained in:
parent
4fc7181c2c
commit
c9a856b8f6
1 changed files with 8 additions and 5 deletions
|
@ -592,11 +592,14 @@
|
|||
data-files))
|
||||
(tar-files
|
||||
(reverse
|
||||
(append (if test
|
||||
`((rename ,test
|
||||
,(path-strip-leading-parents test)))
|
||||
'())
|
||||
docs tar-data-files files))))
|
||||
(append
|
||||
(cond
|
||||
((pair? test) (list test))
|
||||
(test
|
||||
`((rename ,test
|
||||
,(path-strip-leading-parents test))))
|
||||
(else '()))
|
||||
docs tar-data-files files))))
|
||||
(cons `(package
|
||||
,@(reverse res)
|
||||
,@(if (pair? data-files) `((data-files ,@pkg-data-files)) '())
|
||||
|
|
Loading…
Add table
Reference in a new issue