Home | History | Annotate | Download | only in support

Lines Matching refs:repo

50     repo = 'fmtlib.github.io'
52 # Don't update the repo if building on Travis from an account that
54 print('Skipping update of ' + repo)
56 # Clone the fmtlib.github.io repo.
57 rmtree_if_exists(repo)
59 check_call(['git', 'clone', git_url + 'fmtlib/{}.git'.format(repo)])
60 # Copy docs to the repo.
61 target_dir = os.path.join(repo, 'dev')
68 check_call(['git', 'add', '--all'], cwd=repo)
69 if call(['git', 'diff-index', '--quiet', 'HEAD'], cwd=repo):
70 check_call(['git', 'commit', '-m', 'Update documentation'], cwd=repo)
74 p = Popen(cmd, shell=True, stdout=PIPE, stderr=STDOUT, cwd=repo)