man sample extended a little
[k8jam.git] / defaults / Jambase.push
blob33960071e2d8f4ae52baff81b0e5aedf3ad614d5
1 # This program is free software: you can redistribute it and/or modify
2 # it under the terms of the GNU General Public License as published by
3 # the Free Software Foundation, either version 3 of the License, or
4 # (at your option) any later version.
6 # This program is distributed in the hope that it will be useful,
7 # but WITHOUT ANY WARRANTY; without even the implied warranty of
8 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 # GNU General Public License for more details.
11 # You should have received a copy of the GNU General Public License
12 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15 # 'push' target
17 rule -GitPush- {
18   NotFile push ;
19   Always push ;
20   AGitPush push ;
23 actions quietly AGitPush {
24   #echo "WARNING: add 'actions AGitPush' definition to use 'push' target!"
25   if [ -f $(TOP)/.gitpackrepo ]; then
26     gitpackrepo.sh
27   fi
28   bn=`git symbolic-ref --short HEAD`
29   if [ "z_$bn" = "z_master" ]; then
30     git push
31   else
32     echo "REFUSED TO PUSH NON-MASTER!"
33   fi
36 -GitPush- ;