Open Ambrevar opened 2 years ago
For me rulesets.xml fails to build. After some digging, I found out that turning
(uiop:parse-unix-namestring "https-everywhere/src/chrome/content/rules/*.xml")
to
"https-everywhere/src/chrome/content/rules/*.xml"
does the trick. Indeed, parse-unix-namestring turn * into \\* which essentially kills the pattern. Mistake?
parse-unix-namestring
*
\\*
Besides, I got a sb-ext:file-exists condition. I had to append :if-exists :supersede to with-output-to-file. Any idea why?
sb-ext:file-exists
:if-exists :supersede
with-output-to-file
I don't make use of this library anymore; if you're going to be using it in Nyxt would you like me to add you as a collaborator?
Sure thing, thanks for the offer! :)
For me rulesets.xml fails to build. After some digging, I found out that turning
to
does the trick. Indeed,
parse-unix-namestring
turn*
into\\*
which essentially kills the pattern. Mistake?Besides, I got a
sb-ext:file-exists
condition. I had to append:if-exists :supersede
towith-output-to-file
. Any idea why?