From 528b060acfbe23996b8d6c99f1b3f9352d2e0d3e Mon Sep 17 00:00:00 2001 From: Gabriel Carneiro Date: Mon, 5 Aug 2024 14:59:22 -0300 Subject: [PATCH] update makefile to use cp instead of install --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 387c4e7..0eeaa75 100755 --- a/makefile +++ b/makefile @@ -16,7 +16,8 @@ SERVE_FLAGS = -H 0.0.0.0 -P 33002 all: build deploy: build - sg www-data -c "install -dm775 _site ${DEST_PATH}" + sg www-data -c "cp -R _site ${DEST_PATH}" + sg www-data -c "chmod -R 775 ${DEST_PATH}" build: ${JEKYLL_CMD} build --trace