update makefile to use cp instead of install
Gitea Actions Demo / Deploy (push) Successful in 2m4s Details

This commit is contained in:
Carneiro 2024-08-05 14:59:22 -03:00
parent 5049059cc2
commit 528b060acf
1 changed files with 2 additions and 1 deletions

View File

@ -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