mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
1e786086c0
--HG-- extra : rebase_source : be69b304477e4eb9bca91040076dd3f28cceb055
32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
# vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
import subprocess
|
|
|
|
def get_all_toplevel_filenames():
|
|
'''Get a list of all the files in the (Mercurial or Git) repository.'''
|
|
failed_cmds = []
|
|
try:
|
|
cmd = ['hg', 'manifest', '-q']
|
|
all_filenames = subprocess.check_output(cmd, universal_newlines=True,
|
|
stderr=subprocess.PIPE).split('\n')
|
|
return all_filenames
|
|
except:
|
|
failed_cmds.append(cmd)
|
|
|
|
try:
|
|
# Get the relative path to the top-level directory.
|
|
cmd = ['git', 'rev-parse', '--show-cdup']
|
|
top_level = subprocess.check_output(cmd, universal_newlines=True,
|
|
stderr=subprocess.PIPE).split('\n')[0]
|
|
cmd = ['git', 'ls-files', '--full-name', top_level]
|
|
all_filenames = subprocess.check_output(cmd, universal_newlines=True,
|
|
stderr=subprocess.PIPE).split('\n')
|
|
return all_filenames
|
|
except:
|
|
failed_cmds.append(cmd)
|
|
|
|
raise Exception('failed to run any of the repo manifest commands', failed_cmds)
|