Commit 278d10ec authored by Nicolas Wavrant's avatar Nicolas Wavrant

runner: fix in git function (var not initiaziled)

parent c9a34429
......@@ -150,6 +150,8 @@ def gitPush(project):
code = 0
json = ""
try:
repo = Repo(project)
git = repo.git
#push changes to repo
current_branch = repo.active_branch.name
git.push('origin', current_branch)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment