typst-community / typst-package-template

The Unlicense
3 stars 2 forks source link

fix package script to include hidden files (unless ignored) #10

Closed SillyFreak closed 2 weeks ago

SillyFreak commented 3 weeks ago

using * to move all files in a directory is faulty because * does not enumerate hidden files. use shopt -s dotglob to fix this

JamesxX commented 2 weeks ago

What sort of hidden files are you thinking of?

SillyFreak commented 2 weeks ago

Just in general. I was working on another new feature and noticed that top-level hidden files were ignored in general, independent of the Typst ignore. It's just for completeness, even if real packages would ordinarily not have any.

JamesxX commented 2 weeks ago

Fair fair :)