Skip to content

Commit

Permalink
ZLib download link update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmbelo authored Jan 8, 2024
1 parent 1ee36f8 commit 7c803ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python3-android/Android/build_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ def make(self):

def build_package(pkg: Package):
subprocess.check_call(['curl', '-fLO', pkg.source], cwd=BASE / 'deps')
subprocess.check_call(['ls', '-ls'], cwd=BASE / 'deps')
subprocess.check_call(['tar', '--no-same-owner', '-xf', 'zlib-1.2.12.tar'], cwd=BASE / 'deps')
subprocess.check_call(['ls', '-a'], cwd=BASE / 'deps')
subprocess.check_call(['tar', '--no-same-owner', '-xf', os.path.basename(pkg.source)], cwd=BASE / 'deps')

try:
saved_env = os.environ.copy()
Expand Down

0 comments on commit 7c803ee

Please sign in to comment.