diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-12-03 19:18:47 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-12-03 19:19:14 +0100 |
commit | c1d18050b4cfed9eba68d4d21b397c6cce035e37 (patch) | |
tree | 4b6129ff465e64c092e3fd7173ff689c2e1d14b0 | |
parent | e59e2b2951706c3d8ba9374ceb567499f064daf9 (diff) |
Disable recursive Nix test on macOS
https://hydra.nixos.org/build/107724274
-rw-r--r-- | tests/recursive.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/recursive.sh b/tests/recursive.sh index 62896c015..394ae5ddb 100644 --- a/tests/recursive.sh +++ b/tests/recursive.sh @@ -1,5 +1,8 @@ source common.sh +# FIXME +if [[ $(uname) != Linux ]]; then exit; fi + clearStore export unreachable=$(nix add-to-store ./recursive.sh) |