summaryrefslogtreecommitdiff
path: root/check_rebuild.sh
blob: 4d93f99314cb3d0687293ad37f554bff5f867200 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

git pull 1>&1 | grep "Already up-to-date."

if [[ ! $? -eq 0 ]]; then
	cd menuApp
	make -j 4
	cd ..
fi