Skip to content

Commit

Permalink
Display streaming of output when listing files
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Aug 26, 2020
1 parent c879da4 commit 4be073c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion gitman/git.py
Expand Up @@ -162,7 +162,9 @@ def changes(type, include_untracked=False, display_status=True, _show=False):
git('diff-index', '--quiet', 'HEAD', _show=_show)

# Check for untracked files
lines = git('ls-files', '--others', '--exclude-standard', _show=_show)
lines = git(
'ls-files', '--others', '--exclude-standard', _show=_show, _stream=False
)

except ShellError:
status = True
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,7 +1,7 @@
[tool.poetry]

name = "gitman"
version = "2.1b2"
version = "2.1b3"
description = "A language-agnostic dependency manager using Git."

license = "MIT"
Expand Down

0 comments on commit 4be073c

Please sign in to comment.