diff options
Diffstat (limited to 'aux/guix/with-container.sh')
-rwxr-xr-x | aux/guix/with-container.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/aux/guix/with-container.sh b/aux/guix/with-container.sh index b521c82..71e13e0 100755 --- a/aux/guix/with-container.sh +++ b/aux/guix/with-container.sh @@ -1,5 +1,5 @@ #!/bin/sh -set -eux +set -eu if [ -z "${1:-}" ]; then guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \ @@ -9,5 +9,6 @@ elif [ "$1" = '-p' ]; then environment --fallback -m aux/guix/manifest.scm --pure -C else guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \ - environment --fallback -m aux/guix/manifest.scm --pure -C -- sh -c "$@" + environment --fallback -m aux/guix/manifest.scm --pure -C \ + -- sh -c "$@" fi |