You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by ce...@apache.org on 2016/03/22 01:22:47 UTC

incubator-metron git commit: METRON-81: Metron-UI Deployment should exclude node_modules (dlyle65535 via cestella) closes apache/incubator-metron#55

Repository: incubator-metron
Updated Branches:
  refs/heads/master c136b1d67 -> 603d7c2ea


METRON-81: Metron-UI Deployment should exclude node_modules (dlyle65535 via cestella) closes apache/incubator-metron#55


Project: http://git-wip-us.apache.org/repos/asf/incubator-metron/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-metron/commit/603d7c2e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-metron/tree/603d7c2e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-metron/diff/603d7c2e

Branch: refs/heads/master
Commit: 603d7c2ea702a3659e792605edf00251bd80445d
Parents: c136b1d
Author: dlyle65535 <dl...@gmail.com>
Authored: Mon Mar 21 20:22:30 2016 -0400
Committer: cstella <ce...@gmail.com>
Committed: Mon Mar 21 20:22:30 2016 -0400

----------------------------------------------------------------------
 deployment/roles/metron_ui/tasks/copy-source.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-metron/blob/603d7c2e/deployment/roles/metron_ui/tasks/copy-source.yml
----------------------------------------------------------------------
diff --git a/deployment/roles/metron_ui/tasks/copy-source.yml b/deployment/roles/metron_ui/tasks/copy-source.yml
index 0487cf2..703b7f9 100644
--- a/deployment/roles/metron_ui/tasks/copy-source.yml
+++ b/deployment/roles/metron_ui/tasks/copy-source.yml
@@ -24,7 +24,7 @@
     group: root
 
 - name: Archive metron-ui on localhost
-  shell: tar -czf {{ metron_temp_archive }} .
+  shell: tar --exclude='./node_modules' -czf {{ metron_temp_archive }} .
   args:
     chdir: "{{ playbook_dir }}/../../metron-ui"
     creates: "{{ metron_temp_archive }}"