Example #1
0
def post_build_always(*, success=None, **kwargs):
    bye_git_daemon()
    if success:
        with at_dir(repo_dir):
            run_cmd(["git", "push", "origin", "all"], use_pty=True)
        git_add_files('PKGBUILD')
        git_commit()
Example #2
0
def post_build_always(*, success=None, **kwargs):
  bye_git_daemon()
  if success:
    with at_dir(repo_dir):
      run_cmd(["git", "push", "origin", "all"], use_pty=True)
    git_add_files('PKGBUILD')
    git_commit()
Example #3
0
def post_build():
    git_add_files(['PKGBUILD'])
    git_commit()
Example #4
0
def post_build():
  git_add_files(['PKGBUILD'])
  git_commit()