Skip to content

Commit 31d0d7e

Browse files
committed
fix: python update script
1 parent 71f5b09 commit 31d0d7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/update_native_dependencies.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ def _sha256(url):
3131

3232
def _update_cpython(dry_run):
3333
lines = DOCKERFILE.read_text().splitlines()
34-
re_ = re.compile(r"^ /tmp/cross-compiler/entrypoint /build_scripts/build-cpython.sh .*$")
34+
re_ = re.compile(
35+
r"^ /tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh .*$"
36+
)
3537
updates = defaultdict(list)
3638
for i in range(len(lines)):
3739
match = re_.match(lines[i])

0 commit comments

Comments
 (0)