summarylogtreecommitdiffstats
path: root/aur-push.sh
blob: bcbfb938f297d267bd4ecd35dfff7863bdb14ade (plain)
1
2
3
4
5
6
7
8
9
#! /bin/bash
if [ -z "$1" ];
  then echo "Please supply a commit message wrapped in quotes "" before you proceed!";
  else
    makepkg --printsrcinfo > .SRCINFO
    git add .
    git commit -am "$1"
    git push;
fi