1
0
mirror of https://github.com/whowechina/popn_pico.git synced 2025-03-04 00:52:59 +01:00

11 lines
250 B
Plaintext
Raw Normal View History

2022-08-22 21:51:48 +08:00
#!/bin/bash
make compile-verify > /dev/null
if [ $? -ne 0 ]
then
echo "Note: Compiled files outdated, recompiling and committing."
make compile
git add agg-kicad.lib
git add agg-kicad.pro
git commit -m "Rebuild compiled files"
fi