diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-17 14:54:21 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-17 14:54:21 +0200 |
commit | 17f75f9cc4dd70e3e6de7e266ef2bd18a0da310b (patch) | |
tree | 9028360cda782098e34d8a92fdd1474e5eb6626b /tests/flakes.sh | |
parent | 52c8be38e0563c964857491afef01eb2f543d0de (diff) |
parseFlakeRef(): Only search for the top-level directory for CLI flakerefs
Diffstat (limited to 'tests/flakes.sh')
-rw-r--r-- | tests/flakes.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/flakes.sh b/tests/flakes.sh index 25e1847e1..5aec563ac 100644 --- a/tests/flakes.sh +++ b/tests/flakes.sh @@ -18,7 +18,6 @@ registry=$TEST_ROOT/registry.json flake1Dir=$TEST_ROOT/flake1 flake2Dir=$TEST_ROOT/flake2 flake3Dir=$TEST_ROOT/flake3 -flake4Dir=$TEST_ROOT/flake4 flake5Dir=$TEST_ROOT/flake5 flake6Dir=$TEST_ROOT/flake6 flake7Dir=$TEST_ROOT/flake7 @@ -390,14 +389,12 @@ cat > $flake3Dir/flake.nix <<EOF }; } EOF -git -C $flake3Dir add flake.nix +nix flake update $flake3Dir +git -C $flake3Dir add flake.nix flake.lock git -C $flake3Dir commit -m 'Remove packages.xyzzy' git -C $flake3Dir checkout master -# Test whether fuzzy-matching works for IsAlias -(! nix build -o $TEST_ROOT/result flake4/removeXyzzy#xyzzy) - -# Test whether fuzzy-matching works for IsGit +# Test whether fuzzy-matching works for registry entries. (! nix build -o $TEST_ROOT/result flake4/removeXyzzy#xyzzy) nix build -o $TEST_ROOT/result flake4/removeXyzzy#sth |