Skip to content

Commit

Permalink
Removed "Adapted from $FUCHSIA..." comments and cleaned up TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
richkadel committed Aug 10, 2021
1 parent c74a8f9 commit c5586fd
Show file tree
Hide file tree
Showing 35 changed files with 43 additions and 708 deletions.
9 changes: 6 additions & 3 deletions tools/fuchsia/copy_debug_symbols.py
Expand Up @@ -99,9 +99,12 @@ def main():
help='Path to read-elf executable.')

args = parser.parse_args()
assert os.path.exists(args.exec_path), 'exec_path "%s" does not exist' % args.exec_path
assert os.path.exists(args.dest), 'dest "%s" does not exist' % args.dest
assert os.path.exists(args.read_elf), 'read_elf "%s" does not exist' % args.read_elf
assert os.path.exists(args.exec_path), (
'exec_path "%s" does not exist' % args.exec_path)
assert os.path.exists(args.dest), (
'dest "%s" does not exist' % args.dest)
assert os.path.exists(args.read_elf), (
'read_elf "%s" does not exist' % args.read_elf)

parts = GetBuildIdParts(args.exec_path, args.read_elf)
dbg_prefix_base = os.path.join(args.dest, parts['prefix_dir'])
Expand Down

0 comments on commit c5586fd

Please sign in to comment.