From 0c3b900708bbc79e411ea0e60017abde89106a95 Mon Sep 17 00:00:00 2001 From: Enrico Tassi Date: Wed, 25 Nov 2020 15:44:16 +0100 Subject: [ci] avoid always rebuilding jobs that use remake --- dev/ci/ci-interval.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/ci/ci-interval.sh') diff --git a/dev/ci/ci-interval.sh b/dev/ci/ci-interval.sh index 30d437363f..1e89aac629 100755 --- a/dev/ci/ci-interval.sh +++ b/dev/ci/ci-interval.sh @@ -5,4 +5,4 @@ ci_dir="$(dirname "$0")" git_download interval -( cd "${CI_BUILD_DIR}/interval" && autoconf && ./configure && ./remake "-j${NJOBS}" && ./remake install ) +( cd "${CI_BUILD_DIR}/interval" && ( if [ ! -x ./configure ]; then autoconf && ./configure; fi ) && ./remake "-j${NJOBS}" && ./remake install ) -- cgit v1.2.3