tarball: Only check nix files for nixpkgs references

Fixes travis build failure.
This commit is contained in:
Franz Pletz 2016-07-19 10:48:39 +02:00
parent bce5a51a9f
commit 6bcf194449

View file

@ -40,7 +40,7 @@ releaseTools.sourceTarball rec {
echo 'abort "Illegal use of <nixpkgs> in Nixpkgs."' > $TMPDIR/barf.nix
# Make sure that Nixpkgs does not use <nixpkgs>
if grep -r '<nixpkgs\/' pkgs; then
if (find pkgs -type f -name '*.nix' -print | xargs grep '<nixpkgs\/'); then
echo "Nixpkgs is not allowed to use <nixpkgs> to refer to itself."
exit 1
fi