Author: eelco
Date: Wed Feb 16 10:24:25 2011
New Revision: 25987
URL: https://svn.nixos.org/websvn/nix/?rev=25987&sc=1

Log:
* Typo.

Modified:
   nixos/trunk/modules/profiles/installation-device.nix

Modified: nixos/trunk/modules/profiles/installation-device.nix
==============================================================================
--- nixos/trunk/modules/profiles/installation-device.nix        Wed Feb 16 
10:07:28 2011        (r25986)
+++ nixos/trunk/modules/profiles/installation-device.nix        Wed Feb 16 
10:24:25 2011        (r25987)
@@ -5,7 +5,7 @@
 
 let
   # Location of the repository on the harddrive
-  nixosPath = toString ../../.;
+  nixosPath = toString ../..;
 
   # Check if the path is from the NixOS repository
   isNixOSFile = path:
@@ -20,7 +20,7 @@
 
   # Partition module files because between NixOS and non-NixOS files.  NixOS
   # files may change if the repository is updated.
-  partitionnedModuleFiles =
+  partitionedModuleFiles =
     let p = partition isNixOSFile moduleFiles; in
     { nixos = p.right; others = p.wrong; };
 
@@ -32,7 +32,7 @@
         "/etc/nixos/nixos" + removePrefix nixosPath (toString path);
       relocateOthers = null;
     in
-      { nixos = map relocateNixOS partitionnedModuleFiles.nixos;
+      { nixos = map relocateNixOS partitionedModuleFiles.nixos;
         others = []; # TODO: copy the modules to the install-device repository.
       };
 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to