aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xaux/guix/with-container.sh11
1 files changed, 5 insertions, 6 deletions
diff --git a/aux/guix/with-container.sh b/aux/guix/with-container.sh
index 909cd9e..13b6cd3 100755
--- a/aux/guix/with-container.sh
+++ b/aux/guix/with-container.sh
@@ -2,13 +2,12 @@
set -eux
if [ -z "${1:-}" ]; then
- guix time-machine -C aux/guix/pinned-channels.scm -- \
+ guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
environment --fallback -m aux/guix/manifest.scm
elif [ "$1" = '-p' ]; then
- guix time-machine -C aux/guix/pinned-channels.scm -- \
- environment --fallback --pure -C -m aux/guix/manifest.scm
+ guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
+ environment --fallback -m aux/guix/manifest.scm --pure -C
else
- guix time-machine -C aux/guix/pinned-channels.scm -- \
- environment --fallback --pure -C -m aux/guix/manifest.scm -- \
- sh -c "$@"
+ guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
+ environment --fallback -m aux/guix/manifest.scm --pure -C -- sh -c "$@"
fi