-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: don't pack git-ignored files into tars
When temporary operating-system-specific files like .DS_Store (a macOS Finder artifact) are packed into the dist/ tars, it creates version control noise and can make the source-matches-tars check fail unnecessarily. This updates `make dist` to first `git clean` away any git-ignored files. It also changes `make unpack` to work in the case where the source directories are missing, which is useful when you want to unpack the tars from scratch. Finally, this commit re-runs `make dist`, so that the dist/ tars no longer have unnecessary OS-specific files in them.
- Loading branch information
1 parent
661f848
commit 4104aa8
Showing
4 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
.DS_Store? | ||
.ehthumbs.db | ||
Icon? | ||
Thumbs.db.DS_Store | ||
Thumbs.db | ||
._* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.