aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-23 15:05:37 -0300
committerEuAndreh <eu@euandre.org>2021-02-23 15:14:07 -0300
commit10280f7da409fc660c769ba6cce4406ea9d895ef (patch)
treee654714c9c88a4039fc6be8010bb90ed0d671153
parentTODOs.md: Add #task-0a38c085-9d4a-41ef-9f66-dc85d9ad984b (diff)
downloadserver-10280f7da409fc660c769ba6cce4406ea9d895ef.tar.gz
server-10280f7da409fc660c769ba6cce4406ea9d895ef.tar.xz
aux/ci/ci-build.sh: Stop checking for ./configure file
-rwxr-xr-xaux/ci/ci-build.sh8
1 files changed, 1 insertions, 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