Preserve whitespace in string inputs

This commit is contained in:
Eelco Dolstra
2014-08-13 17:25:08 +02:00
parent 9334b84d6f
commit a2b27c7cf2
3 changed files with 6 additions and 2 deletions

View File

@ -183,7 +183,7 @@ sub nixExprPathFromParams {
sub checkInputValue {
my ($c, $name, $type, $value) = @_;
$value = trim $value;
$value = trim $value unless $type eq "string";
error($c, "The value $value of input $name is not a Boolean (true or false).") if
$type eq "boolean" && !($value eq "true" || $value eq "false");