Skip to content

Commit

Permalink
make manifest generator ignore all changes in submodules as they shou…
Browse files Browse the repository at this point in the history
…ldn't matter
  • Loading branch information
darobin committed Apr 1, 2014
1 parent 228703a commit e3a6a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scripts/manifest.py
Expand Up @@ -354,7 +354,7 @@ def has_local_changes():

def get_local_changes():
#This doesn't account for whole directories that have been added
data = git("status", "--porcelain", "--ignore-submodules=untracked")
data = git("status", "--porcelain", "--ignore-submodules=all")
rv = LocalChanges()
for line in data.split("\n"):
line = line.strip()
Expand Down

0 comments on commit e3a6a57

Please sign in to comment.