1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-23 15:43:39 +02:00

Reordered openscad command line parameters.

This commit is contained in:
Martin Budden
2021-03-06 14:19:11 +00:00
parent da4f9fbdc3
commit b83e56713f
5 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ from __future__ import print_function
import subprocess, sys
def run_list(args, silent = False, verbose = False):
cmd = ["openscad", "--hardwarnings"] + args
cmd = ["openscad"] + args + ["--hardwarnings"]
if not silent:
for arg in cmd:
print(arg, end=" ")