From 3c837053ab5268cd33f129b8ea821e3d58e5c93f Mon Sep 17 00:00:00 2001 From: tchughesiv Date: Thu, 24 Oct 2019 16:19:35 -0500 Subject: [PATCH] switch to rsync for manifests Signed-off-by: tchughesiv --- modules/kie-cloud-operator/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/kie-cloud-operator/install b/modules/kie-cloud-operator/install index a87ce64fa..bb91a963b 100755 --- a/modules/kie-cloud-operator/install +++ b/modules/kie-cloud-operator/install @@ -1,6 +1,6 @@ #!/bin/sh -INSTALL_PKGS="go-toolset-1.11.*" +INSTALL_PKGS="rsync go-toolset-1.11.*" OPERATOR_PATH=/usr/local/bin/kie-cloud-operator UI_PATH=/usr/local/bin/console-cr-form @@ -32,7 +32,7 @@ if [[ ! -f ${UI_PATH} ]] ; then fi mv build/bin/* /usr/local/bin/ -cp -r deploy/catalog_resources/redhat /manifests +rsync -arL deploy/catalog_resources/redhat/ /manifests /usr/local/bin/user_setup yum -y autoremove ${INSTALL_PKGS}