Skip to content
Snippets Groups Projects
Commit 8ebead60 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Adds to BOB_DOCUMENTATION_SERVER if already set (new bob.extension support)

parent bee7430c
No related branches found
No related tags found
1 merge request!37Adds to BOB_DOCUMENTATION_SERVER if already set (new bob.extension support)
......@@ -256,7 +256,13 @@ export_env LD_LIBRARY_PATH
export_env BOB_PREFIX_PATH
if [ -z "${CI_BUILD_TAG}" ]; then
BOB_DOCUMENTATION_SERVER="${DOCSERVER}/software/bob/docs/latest/bob/%s/master/"
DEFSRV="${DOCSERVER}/software/bob/docs/latest/bob/%s/master/"
if [ -z "${BOB_DOCUMENTATION_SERVER}" ]; then
BOB_DOCUMENTATION_SERVER="${DEFSRV}"
else
BOB_DOCUMENTATION_SERVER="${BOB_DOCUMENTATION_SERVER}|${DEFSRV}"
fi
unset DEFSRV
export_env BOB_DOCUMENTATION_SERVER
else
log_info "Building tag, not setting BOB_DOCUMENTATION_SERVER"
......
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