takeup/build.sh

13 lines
207 B
Bash
Raw Normal View History

2021-11-14 04:57:48 +00:00
#!/bin/bash
PARTS=(
"slip_coupling"
"magnetic_coupling"
"mount_plate"
)
for part in "${PARTS[@]}"
do
stl="./stl/takeup_${part}.stl"
openscad -o "${stl}" -D "PART=\"${part}\";" "./takeup.scad"
done