Skip to content
Snippets Groups Projects
Verified Commit dee288e5 authored by Romain Deville's avatar Romain Deville
Browse files

:bug: Fix bug in tools/generate_source_docs.sh

Due to subfolder `pagoda/tools` in the path of MKDOCS_ROOT, it was the wrong
`tools` string that was removed in the script.
parent 2fb77ce4
No related branches found
No related tags found
No related merge requests found
Pipeline #9349 passed with stages
in 9 minutes and 47 seconds
...@@ -29,7 +29,7 @@ DRY_RUN="false" ...@@ -29,7 +29,7 @@ DRY_RUN="false"
SCRIPT_PATH="$( cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 || return 1 ; pwd -P )" SCRIPT_PATH="$( cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 || return 1 ; pwd -P )"
SCRIPT_FULL_PATH="${SCRIPT_PATH}/$(basename "${BASH_SOURCE[0]}")" SCRIPT_FULL_PATH="${SCRIPT_PATH}/$(basename "${BASH_SOURCE[0]}")"
MKDOCS_ROOT="${SCRIPT_PATH//\/tools/}" MKDOCS_ROOT="${SCRIPT_PATH}/../"
MKDOCS_DEBUG_LEVEL="INFO" MKDOCS_DEBUG_LEVEL="INFO"
manpage() manpage()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment