Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
makeV2: Exclude all .empty and .DS_Store files when zip CloverV2
  • Loading branch information
stevezhengshiqi committed Jun 25, 2025
commit 48482689a241ef119b597fb136b8db121d0a4b96
3 changes: 2 additions & 1 deletion CloverPackage/makeV2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ ROOT="$PWD"
SYMROOT="${ROOT}"/sym
REVISION=$(git describe --tags $(git rev-list --tags --max-count=1))

zip -qr CloverV2-${REVISION}.zip CloverV2
# zip CloverV2, excluding all .empty and all .DS_Store
zip -qr CloverV2-${REVISION}.zip CloverV2 -x "*/.DS_Store" "*/.empty"
mv CloverV2-${REVISION}.zip $SYMROOT

open sym
Expand Down
Loading