From b6008d045493777afd68d9dc885cc56ffe04a4be Mon Sep 17 00:00:00 2001 From: juandspy <42124482+juandspy@users.noreply.github.com> Date: Wed, 22 Jan 2020 14:50:42 +0100 Subject: [PATCH] Update util/taskcluster.py --- util/taskcluster.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/taskcluster.py b/util/taskcluster.py index 20158c33..e4734ffa 100644 --- a/util/taskcluster.py +++ b/util/taskcluster.py @@ -146,6 +146,9 @@ def main(): maybe_download_tc(target_dir=args.target, tc_url=get_tc_url(args.arch, args.artifact, args.branch)) + if args.artifact == "convert_graphdef_memmapped_format": + subprocess.check_call(['chmod', '+x', os.path.join(args.target, args.artifact)]) + if '.tar.' in args.artifact: subprocess.check_call(['tar', 'xvf', os.path.join(args.target, args.artifact), '-C', args.target])