aboutsummaryrefslogtreecommitdiff
path: root/delivery_merge/utils.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-05-07 00:22:20 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-05-07 00:22:28 -0400
commit36740d90353c92e814917a0688764875fda49558 (patch)
treea2029b8a3d5e32a622ba3f37185c78be82379548 /delivery_merge/utils.py
parent502bb16cab44aed9e36b6052f725a994b1ffab16 (diff)
downloaddelivery_merge-36740d90353c92e814917a0688764875fda49558.tar.gz
Refactor:
* Remove git.py * Replace duplicate code with simple wrapper * Add README.md * Add LICENSE.txt
Diffstat (limited to 'delivery_merge/utils.py')
-rw-r--r--delivery_merge/utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/delivery_merge/utils.py b/delivery_merge/utils.py
index 1dca224..2344a13 100644
--- a/delivery_merge/utils.py
+++ b/delivery_merge/utils.py
@@ -14,6 +14,10 @@ def sh(prog, *args):
return run(command, capture_output=True)
+def git(*args):
+ return sh('git', *args)
+
+
def getenv(s):
""" Convert string of key pairs to dictionary format
"""