This commit is contained in:
Jonas Zeunert
2020-07-02 20:23:48 +02:00
parent 75d3527f30
commit ec2b6ab07a
28 changed files with 1151 additions and 0 deletions

13
test/andi/check_remote.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
#echo "hello world"
cd /home/pi/firmware/flippr-code
OUTPUT="$(git pull)"
if [ "$OUTPUT" != "Already up-to-date." ]; then
echo "repo has updated. compile now..."
cd /home/pi/firmware/flippr-code/FlippR-Driver/build
cmake ..
make
fi
echo "repo on track, nothing to do here..."