diff options
author | EuAndreh <eu@euandre.org> | 2020-12-02 15:16:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-02 15:16:54 -0300 |
commit | d6f5498d7abe060a5ce86460c98853d27f6f59de (patch) | |
tree | f927f755d72c4f2531553265ee77a4de0c8ecc67 /scripts | |
parent | ci-build.sh: Build only check and publish (diff) | |
download | server-d6f5498d7abe060a5ce86460c98853d27f6f59de.tar.gz server-d6f5498d7abe060a5ce86460c98853d27f6f59de.tar.xz |
with-container.sh: Call $@ with sh -c
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci-build.sh | 2 | ||||
-rwxr-xr-x | scripts/with-container.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index f240d35..9b89160 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -36,4 +36,4 @@ pushd "$CLONE" git config --global user.email git@euandre.org git config --global user.name 'EuAndreh CI' -./scripts/with-container.sh make check publish +./scripts/with-container.sh 'make check publish' diff --git a/scripts/with-container.sh b/scripts/with-container.sh index 4aa304d..1261022 100755 --- a/scripts/with-container.sh +++ b/scripts/with-container.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -guix time-machine -C guix/channels.scm -- environment --pure -C -m guix/manifest.scm -- "$@" +guix time-machine -C guix/channels.scm -- environment --pure -C -m guix/manifest.scm -- sh -c "$@" |