2022-05-18 07:04:39 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ ! -f hellen-one/git_scripts ]; then
|
|
|
|
echo "No submodules?"
|
|
|
|
git submodule update --init --recursive
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd hellen-one
|
2022-05-18 07:06:12 -07:00
|
|
|
python3 ./bin/copy_from_Kicad.py "frames:proteus-mustang5.0-" ".." "../../gerber" "60-pin" "a"
|
2022-05-18 07:04:39 -07:00
|
|
|
|
|
|
|
echo "Done!"
|