Skip to content

Commit f32157d

Browse files
committed
Do not checkout-downstream when no_pull is specified
1 parent ed8acc5 commit f32157d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,8 @@ def update_import_cmd(args):
18641864
join(overlaydir, "python", "graal", "ci"),
18651865
dirs_exist_ok=True)
18661866

1867-
run_mx(['--dynamicimports', '/graal-enterprise', 'checkout-downstream', 'compiler', 'graal-enterprise'])
1867+
if not args.no_pull:
1868+
run_mx(['--dynamicimports', '/graal-enterprise', 'checkout-downstream', 'compiler', 'graal-enterprise'])
18681869
enterprisedir = join(SUITE.dir, "..", "graal-enterprise")
18691870
shutil.copy(
18701871
join(enterprisedir, "common.json"),

0 commit comments

Comments
 (0)