Skip to content

Commit

Permalink
make-squashfs.nix: Improve invalid path check messages
Browse files Browse the repository at this point in the history
Now the mtime problems are gone, but EC2 Hydra builders are still having
some problems:

https://hydra.nixos.org/build/66043835
  • Loading branch information
dezgeg committed Dec 15, 2017
1 parent 5af695c commit 6ed6d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/lib/make-squashfs.nix
Expand Up @@ -36,7 +36,7 @@ stdenv.mkDerivation {
hasBadPaths=1
fi
if [ "$mode" != 444 ] && [ "$mode" != 555 ]; then
echo "Store path '$path' has invalid permissions."
echo "Store path '$path' has invalid permissions ($mode)."
hasBadPaths=1
fi
done
Expand Down

0 comments on commit 6ed6d32

Please sign in to comment.