Add review suggestion

Co-Authored-By: DanielChabrowski <dantezstudio@gmail.com>
This commit is contained in:
Anthony Sottile
2019-03-18 02:31:47 +01:00
committed by GitHub
parent 888787fb2d
commit a18b683d12

View File

@@ -38,7 +38,7 @@ def _repo_ref(tmpdir, repo, ref):
env = dict(os.environ, GIT_INDEX_FILE=idx, GIT_OBJECT_DIRECTORY=objs)
staged_files = git.get_staged_files(cwd=repo)
if (len(staged_files) > 0):
if staged_files:
cmd_output('git', 'add', *staged_files, cwd=repo, env=env)
cmd_output('git', 'add', '-u', cwd=repo, env=env)