Skip to content

Commit

Permalink
python -m runners
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Sep 14, 2020
1 parent 0f5f2b3 commit 94cbb5e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gitutils/branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,7 @@ def cli():
_log(P.verbose)

asyncio.run(git_branch(P.mainbranch, P.path))


if __name__ == "__main__":
cli()
4 changes: 4 additions & 0 deletions src/gitutils/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,7 @@ def git_pull_cli():
_log(P.verbose)

asyncio.run(git_pullfetch("pull", P.path))


if __name__ == "__main__":
git_pull_cli()

0 comments on commit 94cbb5e

Please sign in to comment.