We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f5b09 commit 31d0d7eCopy full SHA for 31d0d7e
tools/update_native_dependencies.py
@@ -31,7 +31,9 @@ def _sha256(url):
31
32
def _update_cpython(dry_run):
33
lines = DOCKERFILE.read_text().splitlines()
34
- re_ = re.compile(r"^ /tmp/cross-compiler/entrypoint /build_scripts/build-cpython.sh .*$")
+ re_ = re.compile(
35
+ r"^ /tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh .*$"
36
+ )
37
updates = defaultdict(list)
38
for i in range(len(lines)):
39
match = re_.match(lines[i])
0 commit comments