prevent popup deactivation while button_down
[goodguy/history.git] / cinelerra-5.0 / bld_scripts / bld_incremental.sh
1 #!/bin/bash
2
3 dir="$1"
4 path="/home"
5 bld="git-repo"
6 proj="cinelerra5"
7 base="cinelerra-5.0"
8
9 if [ ! -d "$path/$dir/$bld/$proj" ]; then
10   echo "$bld/$proj missing in $path/$dir"
11   exit 1
12 fi
13
14 cd "$path/$dir/$bld/$proj"
15 git pull
16 if [ $? -ne 0 ]; then
17   echo "git pull $bld/$proj failed"
18   exit 1
19 fi
20
21 cd "$base"
22 make rebuild_all >& log1
23
24 echo "finished: scanning log for ***"
25 grep -a "\*\*\*" log1
26