show output of runSimple

This commit is contained in:
Lurenaud 2023-02-06 11:58:43 +01:00
parent 4f600f6d3e
commit 3c1ad67e36

View File

@ -15,5 +15,5 @@ for i in files:
input = str(i) input = str(i)
commandstep = "PowerShell -NoProfile -ExecutionPolicy Bypass -File " + currentPath + "\export-step.ps1 " + input commandstep = "PowerShell -NoProfile -ExecutionPolicy Bypass -File " + currentPath + "\export-step.ps1 " + input
commandPdfDxf = "PowerShell -NoProfile -ExecutionPolicy Bypass -File " + currentPath + "\export-pdf-dxf.ps1 " + input commandPdfDxf = "PowerShell -NoProfile -ExecutionPolicy Bypass -File " + currentPath + "\export-pdf-dxf.ps1 " + input
subprocess.run(commandstep, capture_output=True) subprocess.run(commandstep)
subprocess.run(commandPdfDxf, capture_output=True) subprocess.run(commandPdfDxf)