From 8cfc7f14133c31c4faca95becca60e589ab2e58f Mon Sep 17 00:00:00 2001 From: Ben Gracewood Date: Wed, 8 Sep 2021 18:51:52 +1200 Subject: [PATCH] Allow copying of assets from custom repo --- bin/install_customizations | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/install_customizations b/bin/install_customizations index aad66b9d..4178f92c 100755 --- a/bin/install_customizations +++ b/bin/install_customizations @@ -17,6 +17,8 @@ if ! [[ -z ${CUSTOMIZATION_GIT_REPO} ]]; npm i; # force overwriting of packages if necessary yes | cp -rf ./node_modules/* ../node_modules; + # copy custom images/assets + yes | cp -rf ./public/* ../public; else echo "Not found. Continuing with standard Library deploy"; fi;