diff options
author | EuAndreh <eu@euandre.org> | 2021-02-23 11:34:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-23 11:34:29 -0300 |
commit | 0debec3b1062a6075210f3f8b16d4216c00b6304 (patch) | |
tree | 2fe0617f662a629ec0b669392fc43f24fcf77273 /aux/ci | |
parent | aux/guix/pinned-channels.scm: Use %default-channels (diff) | |
download | remembering-0debec3b1062a6075210f3f8b16d4216c00b6304.tar.gz remembering-0debec3b1062a6075210f3f8b16d4216c00b6304.tar.xz |
aux/ci/ci-build.sh: Remove checking for ./configure file
Diffstat (limited to 'aux/ci')
-rwxr-xr-x | aux/ci/ci-build.sh | 8 |
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 |