2022-03-04 09:23:35 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-05-21 07:30:26 -07:00
|
|
|
if [ ! -f hellen-one/git_scripts ]; then
|
|
|
|
echo "No submodules?"
|
|
|
|
git submodule update --init --recursive
|
|
|
|
fi
|
|
|
|
|
2022-03-04 09:23:35 -08:00
|
|
|
cd hellen-one
|
2022-06-10 06:29:57 -07:00
|
|
|
python3 ./bin/copy_from_Kicad.py "frames:alphax_" ".." "../../gerber" "4ch" "c"
|
2022-03-04 09:23:35 -08:00
|
|
|
|
|
|
|
echo "Done!"
|