diff --git a/documentation/.gitignore b/documentation/.gitignore --- a/documentation/.gitignore +++ b/documentation/.gitignore @@ -13,7 +13,4 @@ toc-4.adoc toc-5.adoc -# Shared folder -/shared - *.swp diff --git a/documentation/Makefile b/documentation/Makefile --- a/documentation/Makefile +++ b/documentation/Makefile @@ -7,7 +7,6 @@ # # all (default) - generate the books TOC and compile all the documentation # generate - generate the books TOC and build all the documentation -# copy-shared - move the shared AsciiDoc entities to the folder project MAINTAINER=carlavilla@FreeBSD.org @@ -17,7 +16,6 @@ all: starting-message generate-books-toc run generate: starting-message generate-books-toc build -copy-shared: move-shared starting-message: @echo --------------------------------------------------------------- @@ -36,6 +34,3 @@ build: ${HUGO_CMD} --minify - -move-shared: - cp -R ../shared ./shared diff --git a/documentation/shared b/documentation/shared new file mode 120000 --- /dev/null +++ b/documentation/shared @@ -0,0 +1 @@ +../shared \ No newline at end of file diff --git a/website/.gitignore b/website/.gitignore --- a/website/.gitignore +++ b/website/.gitignore @@ -2,9 +2,6 @@ /public resources -# Shared folder -/shared - # Autogenerated content /data/releases.toml diff --git a/website/Makefile b/website/Makefile --- a/website/Makefile +++ b/website/Makefile @@ -7,7 +7,6 @@ # # all (default) - generate the releases.toml and compile all the website # generate - generate the releases.toml and build all the website -# copy-shared - move the shared AsciiDoc entities to the folder project MAINTAINER=carlavilla@FreeBSD.org @@ -16,7 +15,6 @@ all: starting-message generate-releases run generate: starting-message generate-releases build -copy-shared: move-shared starting-message: @echo --------------------------------------------------------------- @@ -31,6 +29,3 @@ build: ${HUGO_CMD} - -move-shared: - cp -R ../shared ./shared diff --git a/website/shared b/website/shared new file mode 120000 --- /dev/null +++ b/website/shared @@ -0,0 +1 @@ +../shared \ No newline at end of file