1
0
mirror of https://github.com/IEEE-SB-Passau/pelican-deployment-system.git synced 2017-09-06 16:35:38 +02:00

--no-edit not liked by older git

This commit is contained in:
2016-06-14 15:58:05 +02:00
parent 1d4b827a5e
commit cb2dbb4299

View File

@@ -98,7 +98,7 @@ class DeploymentRunner:
log.info("%s build_repo: pulling changes from origin", self.name) log.info("%s build_repo: pulling changes from origin", self.name)
refspec = "+{b}:{b}".format(b=self.git_branch) refspec = "+{b}:{b}".format(b=self.git_branch)
try: try:
result = repo.pull("--force", "--no-edit", "--recurse-submodules", result = repo.pull("--force", "--recurse-submodules",
"--depth", "1", "origin", refspec) "--depth", "1", "origin", refspec)
log_git(result) log_git(result)
except Exception as e: except Exception as e: