Skip to content

Commit

Permalink
[Tizen] Update base_repo and unified_repo of generate_sysroot script (#…
Browse files Browse the repository at this point in the history
…364)

* Update base_repo and unified_repo url

* Code format
  • Loading branch information
xiaowei-guan authored Mar 13, 2024
1 parent 4eff894 commit 52564bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/tizen/generate_sysroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ def generate_sysroot(sysroot: Path, api_version: float, arch: str, quiet=False):
else:
sys.exit('Unknown arch: ' + arch)

base_repo = 'http://download.tizen.org/snapshots/tizen/{}-base/latest/repos/standard/packages'.format(
api_version)
unified_repo = 'http://download.tizen.org/snapshots/tizen/{}-unified/latest/repos/standard/packages'.format(
api_version)
base_repo = 'http://download.tizen.org/snapshots/TIZEN/Tizen-{}/Tizen-{}-Base/latest/repos/standard/packages'.format(
api_version, api_version)
unified_repo = 'http://download.tizen.org/snapshots/TIZEN/Tizen-{}/Tizen-{}-Unified/latest/repos/standard/packages'.format(
api_version, api_version)

# Retrieve html documents.
documents = {}
Expand Down

0 comments on commit 52564bb

Please sign in to comment.