Force DEBUG variable to false when rendering with this script

This commit is contained in:
Matt McWilliams 2021-10-18 13:07:19 -04:00
parent f4fbdbe614
commit 8c106c3d42
1 changed files with 2 additions and 2 deletions

View File

@ -52,9 +52,9 @@ render_part () {
start=`date +%s`
if [[ "${SIZE}" == "100ft" ]]; then
openscad --csglimit=2000000 -o "$stl" -D "PART=\"${FILE}\"" -D "FN=800" "${scad}"
openscad --csglimit=2000000 -o "$stl" -D "PART=\"${FILE}\"" -D "FN=800" -D "DEBUG=false" "${scad}"
else
openscad --csglimit=1000000 -o "$stl" -D "PART=\"${FILE}\"" -D "FN=600" "${scad}"
openscad --csglimit=1000000 -o "$stl" -D "PART=\"${FILE}\"" -D "FN=600" -D "DEBUG=false" "${scad}"
fi
end=`date +%s`