Skip to content
Snippets Groups Projects
Commit 5092934d authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8437: Support release builds from branches/ dir

parent 86cd04cc
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,9 @@ export LOFAR_BRANCH_URL="https://svn.astron.nl/LOFAR/${LOFAR_BRANCH_NAME}" ...@@ -61,7 +61,9 @@ export LOFAR_BRANCH_URL="https://svn.astron.nl/LOFAR/${LOFAR_BRANCH_NAME}"
case "${LOFAR_BRANCH_NAME}" in case "${LOFAR_BRANCH_NAME}" in
trunk) export LOFAR_TAG=trunk ;; trunk) export LOFAR_TAG=trunk ;;
tags/*) export LOFAR_TAG=${LOFAR_BRANCH_NAME##tags/LOFAR-Release-} ;; */LOFAR-Release-*)
# support releases in both tags/ and branches/
export LOFAR_TAG=${LOFAR_BRANCH_NAME##*/LOFAR-Release-} ;;
branches/*) export LOFAR_TAG=${LOFAR_BRANCH_NAME##branches/*Task} ;; branches/*) export LOFAR_TAG=${LOFAR_BRANCH_NAME##branches/*Task} ;;
*) export LOFAR_TAG=latest ;; *) export LOFAR_TAG=latest ;;
esac esac
......
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