This is an automated email from the ASF dual-hosted git repository.
krisden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git
The following commit(s) were added to refs/heads/master by this push:
new da1e739 KNOX-2359 - Knox src zip should not include node_modules
folder (#328)
da1e739 is described below
commit da1e739a93d31cdd71d358df79e4a388cc4a24ab
Author: Kevin Risden <[email protected]>
AuthorDate: Mon Apr 27 14:25:48 2020 -0400
KNOX-2359 - Knox src zip should not include node_modules folder (#328)
Signed-off-by: Kevin Risden <[email protected]>
---
src/assembly.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/assembly.xml b/src/assembly.xml
index 58ffa86..60565fa 100644
--- a/src/assembly.xml
+++ b/src/assembly.xml
@@ -32,7 +32,8 @@
<exclude>**/.settings/**</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/*.iml</exclude>
+ <exclude>**/node_modules/**</exclude>
</excludes>
</fileSet>
</fileSets>
-</assembly>
\ No newline at end of file
+</assembly>