From 4f515ac899e78626beff35a13fbc7624c892e04c Mon Sep 17 00:00:00 2001 From: Daniel Petersen Date: Sat, 21 Mar 2020 02:33:31 -0700 Subject: [PATCH] changed cp flag in build.sh -rL to -RL so it works in mac (#181) Co-authored-by: Daniel Petersen --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 285afe42..c3c22023 100755 --- a/build.sh +++ b/build.sh @@ -16,7 +16,7 @@ rm -rf $DEST/* (cd client && [[ -d node_modules ]] || npm install) # Static assets -cp -rL www/* $CUSTOM_ASSETS $DEST/ +cp -RL www/* $CUSTOM_ASSETS $DEST/ # CSS customizations [ -n "$CUSTOM_CSS" ] && cat $CUSTOM_CSS >> $DEST/style.css