mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
fix(publish): ignore .DS_Store while publishing (#22478)
This commit is contained in:
parent
66424032a2
commit
ef43d51497
1 changed files with 1 additions and 0 deletions
|
@ -60,6 +60,7 @@ pub fn create_gzipped_tarball(
|
|||
if !matches_pattern
|
||||
|| path.file_name() == Some(OsStr::new(".git"))
|
||||
|| path.file_name() == Some(OsStr::new("node_modules"))
|
||||
|| path.file_name() == Some(OsStr::new(".DS_Store"))
|
||||
{
|
||||
if file_type.is_dir() {
|
||||
iterator.skip_current_dir();
|
||||
|
|
Loading…
Add table
Reference in a new issue