mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
29 lines
671 B
Text
29 lines
671 B
Text
|
---
|
||
|
synopsis: Warn on unknown settings anywhere in the command line
|
||
|
prs: 10701
|
||
|
---
|
||
|
|
||
|
All `nix` commands will now properly warn when an unknown option is specified anywhere in the command line.
|
||
|
|
||
|
Before:
|
||
|
|
||
|
```console
|
||
|
$ nix-instantiate --option foobar baz --expr '{}'
|
||
|
warning: unknown setting 'foobar'
|
||
|
$ nix-instantiate '{}' --option foobar baz --expr
|
||
|
$ nix eval --expr '{}' --option foobar baz
|
||
|
{ }
|
||
|
```
|
||
|
|
||
|
After:
|
||
|
|
||
|
```console
|
||
|
$ nix-instantiate --option foobar baz --expr '{}'
|
||
|
warning: unknown setting 'foobar'
|
||
|
$ nix-instantiate '{}' --option foobar baz --expr
|
||
|
warning: unknown setting 'foobar'
|
||
|
$ nix eval --expr '{}' --option foobar baz
|
||
|
warning: unknown setting 'foobar'
|
||
|
{ }
|
||
|
```
|