Skip to content
Snippets Groups Projects
Commit 7728a451 authored by Johannes Meyer's avatar Johannes Meyer
Browse files

icinga-build-deb-source: Skip uscan entirely if there's a tarball

parent d6b6f1ba
No related branches found
No related tags found
No related merge requests found
Pipeline #11062 passed
...@@ -45,12 +45,12 @@ if [ "${ICINGA_BUILD_TYPE}" == "release" ] ; then ...@@ -45,12 +45,12 @@ if [ "${ICINGA_BUILD_TYPE}" == "release" ] ; then
( (
set -ex set -ex
if [ "${USCAN_DOWNLOAD}" == "no" ]; then if [ "${CI_SKIP_USCAN}" == "yes" ]; then
cp ./*.tar* "${BUILDDIR}/" cp ./*.tar* "${BUILDDIR}/"
else
cd "${BUILDDIR}/${ICINGA_BUILD_PROJECT}"
run-retry-timeout uscan --download-current-version --verbose
fi fi
cd "${BUILDDIR}/${ICINGA_BUILD_PROJECT}"
run-retry-timeout uscan --download-current-version --verbose
) )
else else
( (
......
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