Remove redirect creation in mk-docs.sh.

This commit is contained in:
Sergio Benitez 2024-02-29 23:43:47 -08:00
parent 32c8199499
commit 6b0760b83d
1 changed files with 0 additions and 14 deletions

View File

@ -32,17 +32,3 @@ pushd "${PROJECT_ROOT}" > /dev/null 2>&1
-p rocket_dyn_templates \ -p rocket_dyn_templates \
-p rocket_ws -p rocket_ws
popd > /dev/null 2>&1 popd > /dev/null 2>&1
REDIRECTS="
/ /v0.5/rocket/ 302!
/rocket/ /v0.5/rocket/ 302!
/:v /:v/rocket/
/:v/* https://:v--rocket-docs.netlify.app/:splat 200
"
# Generating redirection list: from to.
if [ "${GIT_BRANCH}" = "master" ]; then
echo ":::: Generating redirects..."
echo "${REDIRECTS}" | tee "${DOC_DIR}/_redirects"
else
echo ":: Skipping redirects for branch '${GIT_BRANCH}'"
fi