31 lines
775 B
Bash
Executable File
31 lines
775 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
mkdir -p keyboard60_ortholinear_stl
|
|
|
|
echo "Generating: case_left.stl"
|
|
openscad \
|
|
-o "keyboard60_ortholinear_stl/case_left.stl" \
|
|
-D "render_part=\"left\"" \
|
|
./case_ortholinear.scad
|
|
|
|
echo "Generating: case_right.stl"
|
|
openscad \
|
|
-o "keyboard60_ortholinear_stl/case_right.stl" \
|
|
-D "render_part=\"right\"" \
|
|
./case_ortholinear.scad
|
|
|
|
echo "Generating: backplate_left.stl"
|
|
openscad \
|
|
-o "keyboard60_ortholinear_stl/backplate_left.stl" \
|
|
-D "render_part=\"left\"" \
|
|
./backplate_ortholinear.scad
|
|
|
|
echo "Generating: backplate_right.stl"
|
|
openscad \
|
|
-o "keyboard60_ortholinear_stl/backplate_right.stl" \
|
|
-D "render_part=\"right\"" \
|
|
./backplate_ortholinear.scad
|
|
|
|
echo "Done! Check the 'keyboard60_ortholinear_stl' folder."
|