mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-04-04 21:05:41 +00:00
Merge remote-tracking branch 'origin/develop' into xap
This commit is contained in:
commit
c5498e34d2
@ -111,9 +111,9 @@ def git_check_deviation(active_branch):
|
||||
|
||||
|
||||
def git_get_ignored_files(check_dir='.'):
|
||||
"""Return a list of files that would be captured by the current .gitingore
|
||||
"""Return a list of files that would be captured by the current .gitignore
|
||||
"""
|
||||
invalid = cli.run(['git', 'ls-files', '-c', '-o', '-i', '--exclude-standard', check_dir])
|
||||
invalid = cli.run(['git', 'ls-files', '-c', '-o', '-i', '--exclude-from=.gitignore', check_dir])
|
||||
if invalid.returncode != 0:
|
||||
return []
|
||||
return invalid.stdout.strip().splitlines()
|
||||
|
Loading…
Reference in New Issue
Block a user