From fceadcbef7c2d32eba9f8ae92d031801020220df Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Thu, 15 Oct 2009 23:39:57 +0000 Subject: [PATCH] --redo -> --fast svn path=/nixos/trunk/; revision=17839 --- modules/installer/tools/nixos-rebuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/installer/tools/nixos-rebuild.sh b/modules/installer/tools/nixos-rebuild.sh index 41b179fade9b..cad1308355f0 100644 --- a/modules/installer/tools/nixos-rebuild.sh +++ b/modules/installer/tools/nixos-rebuild.sh @@ -34,7 +34,7 @@ Options: --rollback restore the previous NixOS configuration (only with switch, boot, test, build) - --redo same as --no-pull --no-build-nix --show-trace + --fast same as --no-pull --no-build-nix --show-trace Various nix-build options are also accepted, in particular: @@ -78,7 +78,7 @@ while test "$#" -gt 0; do elif test "$i" = --max-jobs -o "$i" = -j; then j="$1"; shift 1 extraBuildFlags="$extraBuildFlags $i $j" - elif test "$i" = --redo; then + elif test "$i" = --fast; then buildNix= pullManifest= extraBuildFlags="$extraBuildFlags --show-trace"