fix: keyboard case + plate generation scripts

This commit is contained in:
Sam Hadow
2026-03-26 08:38:55 +01:00
parent 807cbb5b8c
commit 18e4a6f35b
3 changed files with 8 additions and 8 deletions
Regular → Executable
+4 -4
View File
@@ -6,25 +6,25 @@ mkdir -p keyboard60_ortholinear_stl
echo "Generating: case_left.stl"
openscad \
-o "keyboard60_ortholinear_stl/case_left.stl" \
-D "render_part=left" \
-D "render_part=\"left\"" \
./case.scad
echo "Generating: case_right.stl"
openscad \
-o "keyboard60_ortholinear_stl/case_right.stl" \
-D "render_part=right" \
-D "render_part=\"right\"" \
./case.scad
echo "Generating: backplate_left.stl"
openscad \
-o "keyboard60_ortholinear_stl/backplate_left.stl" \
-D "render_part=left" \
-D "render_part=\"left\"" \
./backplate_ortholinear.scad
echo "Generating: backplate_right.stl"
openscad \
-o "keyboard60_ortholinear_stl/backplate_right.stl" \
-D "render_part=right" \
-D "render_part=\"right\"" \
./backplate_ortholinear.scad
echo "Done! Check the 'keyboard60_ortholinear_stl' folder."