From 20a5e9db841a5b04f7c3d39f775552b1a1025b46 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 14 Nov 2017 12:19:41 +0100 Subject: [PATCH] nixos-option: don't eval description see https://github.com/NixOS/nixpkgs/pull/31630#issuecomment-344073438 --- nixos/modules/installer/tools/nixos-option.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/installer/tools/nixos-option.sh b/nixos/modules/installer/tools/nixos-option.sh index 27eacda48a87..5141f3cd51cf 100644 --- a/nixos/modules/installer/tools/nixos-option.sh +++ b/nixos/modules/installer/tools/nixos-option.sh @@ -291,7 +291,7 @@ if test "$(evalOpt "_type" 2> /dev/null)" = '"option"'; then fi echo "Description:" echo - eval printf $(evalOpt "description") + echo $(evalOpt "description") echo $desc;