Skip to content

Commit

Permalink
Fix .gitignore pattern
Browse files Browse the repository at this point in the history
Summary:
`java/**.asc` is not a correct gitignore pattern
See https://git-scm.com/docs/gitignore for the list of allowed `**` patterns

It seems reasonable to assume that intention is `java/**/*.asc`

The reason why it bothers me is the fact that ripgrep parses .gitignore files
and complains about invalid pattern
https://github.com/BurntSushi/ripgrep
Closes facebook#2214

Differential Revision: D5063030

Pulled By: yiwu-arbug

fbshipit-source-id: ddd6682b81f03134be15f20fd596130776b69695
  • Loading branch information
vors authored and facebook-github-bot committed May 15, 2017
1 parent fa5a15c commit 7a47b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ rocksdb.h
unity.cc
java/crossbuild/.vagrant
.vagrant/
java/**.asc
java/**/*.asc
java/javadoc

scan_build_report/
Expand Down

0 comments on commit 7a47b43

Please sign in to comment.