From 0debec3b1062a6075210f3f8b16d4216c00b6304 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 23 Feb 2021 11:34:29 -0300 Subject: aux/ci/ci-build.sh: Remove checking for ./configure file --- aux/ci/ci-build.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/aux/ci/ci-build.sh b/aux/ci/ci-build.sh index 311abf9..2aa30d6 100755 --- a/aux/ci/ci-build.sh +++ b/aux/ci/ci-build.sh @@ -50,13 +50,7 @@ EOF RUNNER='sh -c' fi - if [ -f ./configure ]; then - COMMAND='./configure && make CC=cc clean check public' - else - COMMAND='make CC=cc clean check public' - fi - - $RUNNER "$COMMAND" + $RUNNER 'make clean check public' rsync -avzzP public/ "/srv/http/$PACKAGE/" --delete } | tee "$LOGFILE" 2>&1 -- cgit v1.2.3