nix: forbid url literals in Operation::Instantiate as well
This commit is contained in:
parent
9194ace589
commit
686d469dba
|
@ -79,6 +79,9 @@ impl Operation {
|
|||
Operation::Evaluate => {
|
||||
command.args(&["--eval", "--strict", "--json", "--option", "experimental-features", "no-url-literals"]);
|
||||
}
|
||||
Operation::Instantiate => {
|
||||
command.args(&["--option", "experimental-features", "no-url-literals"])
|
||||
}
|
||||
_ => (),
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue