diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..774b2be --- /dev/null +++ b/build.sh @@ -0,0 +1,13 @@ +#!/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 \ No newline at end of file