mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 09:20:15 -06:00
12 lines
310 B
Makefile
12 lines
310 B
Makefile
|
|
.PHONY: docs-copy
|
|
docs-copy:
|
|
mkdir -p hugo/content/; \
|
|
cd hugo; \
|
|
git init; \
|
|
git remote rm origin; \
|
|
git remote add origin https://github.com/owncloud/owncloud.github.io; \
|
|
git fetch --depth=1; \
|
|
git checkout origin/source -f; \
|
|
rsync -ax --delete --exclude hugo/ --exclude Makefile ../. content/; \
|