Skip to content

Commit 52564bb

Browse files
authored
[Tizen] Update base_repo and unified_repo of generate_sysroot script (#364)
* Update base_repo and unified_repo url * Code format
1 parent 4eff894 commit 52564bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/tizen/generate_sysroot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ def generate_sysroot(sysroot: Path, api_version: float, arch: str, quiet=False):
4141
else:
4242
sys.exit('Unknown arch: ' + arch)
4343

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

4949
# Retrieve html documents.
5050
documents = {}

0 commit comments

Comments
 (0)