mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-01-16 21:58:27 +01:00
9 lines
226 B
Bash
Executable File
9 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
|
|
|
|
for testscript in tests/test_*.scad ; do
|
|
${OPENSCAD} -o .off --hardwarnings --check-parameters true --check-parameter-ranges true $testscript
|
|
done
|
|
|