Skip to content

Commit 1195445

Browse files
authored
Merge pull request typst-community#10 from SillyFreak/fix-hidden-file-handling
fix package script to include hidden files (unless ignored)
2 parents 21cb88a + a1db33a commit 1195445

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/package

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,7 @@ if rm -r "${TARGET:?}" 2>/dev/null; then
105105
echo "Overwriting existing version."
106106
fi
107107
mkdir -p "$TARGET"
108+
109+
# include hidden files by setting dotglob
110+
shopt -s dotglob
108111
mv "$TMP"/* "$TARGET"

0 commit comments

Comments
 (0)