1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-07-30 20:30:09 +02:00

Added --hardwarnings to openscad.py

This commit is contained in:
Chris Palmer
2021-01-15 18:13:20 +00:00
parent 93b260b7b9
commit 7f9122ae66
2 changed files with 2 additions and 2 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"] + args
cmd = ["openscad", "--hardwarnings"] + args
if not silent:
for arg in cmd:
print(arg, end=" ")