Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
fix(list_files): Remove color=never
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmartin committed Jan 28, 2016
1 parent ab34275 commit 87b58dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def list_files(self, path):

# `grep -v /$` matches everything that doesn't end with a
# trailing slash, i.e. only files since `ls -p` is used:
result = self.run('ls -p | grep --color=never -v /$', path)
result = self.run('ls -p | grep -v /$', path)

if not result.succeeded:
if errors.FILE_NOT_FOUND_PREDICATE in result.err:
Expand Down

0 comments on commit 87b58dd

Please sign in to comment.