diff options
author | EuAndreh <eu@euandre.org> | 2021-02-23 10:05:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-23 10:05:32 -0300 |
commit | 78c315f2d8c67d075aacb7a799d573a940e1b4db (patch) | |
tree | 148a0858ab5ff012d5e4ed340ae67a54bee2973a /aux/ci | |
parent | scripts/paku: Indent #:phases keyword (diff) | |
download | package-repository-78c315f2d8c67d075aacb7a799d573a940e1b4db.tar.gz package-repository-78c315f2d8c67d075aacb7a799d573a940e1b4db.tar.xz |
Update aux/ci/ci-build.sh
Diffstat (limited to 'aux/ci')
-rwxr-xr-x | aux/ci/ci-build.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/aux/ci/ci-build.sh b/aux/ci/ci-build.sh index 311abf9..1e3af4a 100755 --- a/aux/ci/ci-build.sh +++ b/aux/ci/ci-build.sh @@ -46,17 +46,12 @@ EOF if [ -f aux/guix/with-container.sh ]; then RUNNER='./aux/guix/with-container.sh' + guix describle else 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 |