Skip to content
Snippets Groups Projects
Unverified Commit 3c230ad2 authored by trop[bot]'s avatar trop[bot] Committed by GitHub
Browse files

build: fix dump_syms.py to work with python 3 (#28996)


Co-authored-by: default avatarJohn Kleinschmidt <jkleinsc@electronjs.org>
parent f93a9607
No related merge requests found
......@@ -39,7 +39,7 @@ def main(dump_syms, binary, out_dir, stamp_file, dsym_file=None):
args += ["-g", dsym_file]
args += [binary]
symbol_data = subprocess.check_output(args)
symbol_data = subprocess.check_output(args).decode(sys.stdout.encoding)
symbol_path = os.path.join(out_dir, get_symbol_path(symbol_data))
mkdir_p(os.path.dirname(symbol_path))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment