From 6ed6d323fe3d1c45b4c69040d658db5078f8d511 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Fri, 15 Dec 2017 19:57:40 +0200 Subject: [PATCH] make-squashfs.nix: Improve invalid path check messages Now the mtime problems are gone, but EC2 Hydra builders are still having some problems: https://hydra.nixos.org/build/66043835 --- nixos/lib/make-squashfs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lib/make-squashfs.nix b/nixos/lib/make-squashfs.nix index c76c9873741..e66c0ae8f66 100644 --- a/nixos/lib/make-squashfs.nix +++ b/nixos/lib/make-squashfs.nix @@ -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