Skip to content

Commit

Permalink
use shell to evaluate subprocess parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgrantham-lunarg committed Apr 20, 2023
1 parent 3a665ea commit 81f9f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/capture/gfxrecon-capture.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
sys.exit(1)

print("Warning: the 'gfxrecon-capture.py' script is deprecated and will be removed in a future update. Use 'gfxrecon-capture-vulkan.py' instead.", flush=True)
result = subprocess.run(["gfxrecon-capture-vulkan.py",] + argv[1:])
result = subprocess.run(["gfxrecon-capture-vulkan.py",] + argv[1:], shell = True)
sys.exit(result.returncode)

0 comments on commit 81f9f8e

Please sign in to comment.