nixos/tests: Fix subprocess launch call for VM monitor

This crashed in the create-script case
This commit is contained in:
Jacek Galowicz 2019-11-06 21:48:08 +01:00
parent 2e52f98ddb
commit cf138b4e6b

View file

@ -588,7 +588,7 @@ class Machine:
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=False,
shell=True,
cwd=self.state_dir,
env=environment,
)