Skip to content

Commit

Permalink
Exclude out/** from the source glob.
Browse files Browse the repository at this point in the history
This directory is used by IntelliJ if scripts/setup-intellij.sh is used to generate the .iml file.

--
MOS_MIGRATED_REVID=117801566
  • Loading branch information
lberki authored and damienmg committed Mar 23, 2016
1 parent d521245 commit ebd3862
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ filegroup(
srcs = glob(
["**"],
exclude = [
"bazel-*/**",
"output/**",
".*/**",
"bazel-*/**", # convenience symlinks
"out/**" # IntelliJ with setup-intellij.sh
"output/**", # output of compile.sh
".*/**", # mainly git
],
) + [
"//examples:srcs",
Expand Down

0 comments on commit ebd3862

Please sign in to comment.