Forward arguments in vgpu_unlock (#26)

This commit is contained in:
arki05 2021-04-15 17:50:06 +02:00 committed by GitHub
parent 9416363206
commit 10fb78a81d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -346,7 +346,7 @@ def main():
exit()
device.on("child-added", on_child_added)
pid = device.spawn(sys.argv[2])
pid = device.spawn(["/bin/bash", "-c", ' '.join(sys.argv[2:])])
instrument(pid)
# Wait for everything to terminate before exiting.