1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-07-24 17:31:14 +02:00

Fixed openscad.py on Linux.

This commit is contained in:
Chris Palmer
2021-01-03 09:51:20 +00:00
parent 4a95ce528e
commit 7c439a687f

View File

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