Skip to content
Snippets Groups Projects
Commit 7ee49064 authored by Felix Gerking's avatar Felix Gerking
Browse files

package_release: rename incorrect bash variable

parent 9d8f6200
No related branches found
No related tags found
No related merge requests found
......@@ -151,15 +151,15 @@ variables:
fi
# Generate AlphaPlan FWR articles if release tag is set
ap-script=".gitlab-ci/alphaplan_fwr.py"
[ ! -x "${ap-script}" ] && script=".repo/manifests/${ap-script}"
[ ! -x "${ap-script}" ] && echo "Failed to find alphaplan_fwr script"
apscript=".gitlab-ci/alphaplan_fwr.py"
[ ! -x "${apscript}" ] && script=".repo/manifests/${apscript}"
[ ! -x "${apscript}" ] && echo "Failed to find alphaplan_fwr script"
#if [ -n "$CI_COMMIT_TAG" ] && \
echo "CI AP debug mode"
if true && \
[[ "${CI_PARAM_PACKAGE_FTP}" == "false" ]];then
${ap-script} \
${apscript} \
--images-dir="${ARTIFACTS_IMAGE_PATH}" \
--outputdir-local=${outdir} \
--outputdir-upload=release
......
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