diff options
author | EuAndreh <eu@euandre.org> | 2021-09-13 09:11:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-09-13 13:13:47 -0300 |
commit | 2a250a6727d35173039a4c43b0c449f84360a877 (patch) | |
tree | 3deeb1d97d82a8439897f3c770f6e886d055ef3c /aux/ci | |
parent | aux/guix/with-container.sh: Remove -p and -C options (diff) | |
download | git-permalink-2a250a6727d35173039a4c43b0c449f84360a877.tar.gz git-permalink-2a250a6727d35173039a4c43b0c449f84360a877.tar.xz |
aux/ci/ci-build.sh: Use aux/with-container, as a symlink to aux/guix/with-container.sh
Diffstat (limited to 'aux/ci')
-rwxr-xr-x | aux/ci/ci-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/ci/ci-build.sh b/aux/ci/ci-build.sh index 67773fe..34233b7 100755 --- a/aux/ci/ci-build.sh +++ b/aux/ci/ci-build.sh @@ -50,8 +50,8 @@ EOF git config --global user.email git@euandre.org git config --global user.name 'EuAndreh CI' - if [ -f aux/guix/with-container.sh ]; then - RUNNER='sh aux/guix/with-container.sh' + if [ -e aux/with-container ]; then + RUNNER='sh aux/with-container' else RUNNER='sh -c' fi |