From f81eb12d41e535cf5176ee6cd00b16de33a714d1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 May 2012 14:06:46 +0000 Subject: [PATCH] * Now hopefully a proper fix for the problem in http://hydra.nixos.org/build/2645533 (which I can't reproduce btw - so much for reproducibility...). svn path=/nixos/trunk/; revision=34243 --- modules/installer/tools/nixos-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/installer/tools/nixos-install.sh b/modules/installer/tools/nixos-install.sh index 258f125db5da..4e89770cce56 100644 --- a/modules/installer/tools/nixos-install.sh +++ b/modules/installer/tools/nixos-install.sh @@ -93,7 +93,7 @@ storePaths=$(@perl@/bin/perl @pathsFromGraph@ @nixClosure@) echo "copying Nix to $mountPoint...." for i in $storePaths; do echo " $i" - chattr -R -i $mountPoint/nix/store/$i 2> /dev/null || true # clear immutable bit + chattr -R -i $mountPoint/$i 2> /dev/null || true # clear immutable bit rsync -a $i $mountPoint/nix/store/ done