Skip to content

Commit a1db33a

Browse files
committed
fix package script to include hidden files (unless ignored)
1 parent 21cb88a commit a1db33a

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)