Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ereslibre committed Aug 18, 2024
1 parent 74e4892 commit 8e19362
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nixos/tests/nvidia-container-toolkit.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ import ./make-test-python.nix (
check_file_referential_integrity() {
echo "checking $1 referential integrity"
( ( ${pkgs.glibc.bin}/bin/ldd "$1" | ${lib.getExe pkgs.gnugrep} "not found" ) && exit 1 ) || exit 0
( ${pkgs.glibc.bin}/bin/ldd "$1" | ${lib.getExe pkgs.gnugrep} "not found" &> /dev/null ) && return 1
return 0
}
check_directory_referential_integrity() {
Expand Down

0 comments on commit 8e19362

Please sign in to comment.