1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-11 12:49:18 +03:00

system-packages: make test actually check the expected behaviour

This commit is contained in:
Daiderd Jordan 2019-01-18 23:13:42 +01:00
parent 629fa53498
commit 236d9b0c2d

View File

@ -5,6 +5,6 @@
test = ''
echo checking hello binary in /sw/bin >&2
test "$(readlink -f ${config.out}/sw/bin/hello)" != "${pkgs.hello}/bin/foo"
test "$(readlink -f ${config.out}/sw/bin/hello)" = "${pkgs.hello}/bin/hello"
'';
}