update makefile to use cp instead of install
Gitea Actions Demo / Deploy (push) Successful in 2m4s
Details
Gitea Actions Demo / Deploy (push) Successful in 2m4s
Details
This commit is contained in:
parent
5049059cc2
commit
528b060acf
3
makefile
3
makefile
|
@ -16,7 +16,8 @@ SERVE_FLAGS = -H 0.0.0.0 -P 33002
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
deploy: 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:
|
build:
|
||||||
${JEKYLL_CMD} build --trace
|
${JEKYLL_CMD} build --trace
|
||||||
|
|
Loading…
Reference in New Issue