Skip to content

Commit b8a611c

Browse files
committed
fix: jsonnet static error
1 parent 63ce9d7 commit b8a611c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/share/rsdk/build/mod/additional_repos.libjsonnet

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ local radxa_url(radxa_mirror) = (
2525
// use_pkgs_json: whether to download and embed Radxa pkgs.json metadata
2626
function(suite, radxa_mirror, radxa_repo_suffix, product, temp_dir, install_vscodium, use_pkgs_json) {
2727
// Pre-compute common parameters to avoid repeated string concatenation below
28-
local base_radxa_url = radxa_url(radxa_mirror);
29-
local full_suite = suite + radxa_repo_suffix;
30-
local soc = product_soc(product);
31-
local family = product_soc_family(product);
28+
local base_radxa_url = radxa_url(radxa_mirror),
29+
local full_suite = suite + radxa_repo_suffix,
30+
local soc = product_soc(product),
31+
local family = product_soc_family(product),
3232

3333
// 80-radxa-* sources: SoC-specific or family repositories; only write deb entries, independent of pkgs.json
3434
local radxa_80_sources = if soc_specific_repo(soc)
@@ -49,7 +49,7 @@ function(suite, radxa_mirror, radxa_repo_suffix, product, temp_dir, install_vsco
4949
suite: full_suite,
5050
product_soc_family: family,
5151
}
52-
];
52+
],
5353

5454
// 70-radxa: main Radxa repository deb entry; always present, pkgs.json controlled by hooks below
5555
local radxa_70_source = [
@@ -59,7 +59,7 @@ function(suite, radxa_mirror, radxa_repo_suffix, product, temp_dir, install_vsco
5959
radxa_url: base_radxa_url,
6060
suite: full_suite,
6161
},
62-
];
62+
],
6363

6464
// Radxa pkgs.json downloads and snapshot; grouped in a single hooks list controlled by use_pkgs_json
6565
local radxa_pkgs_json_hooks = if use_pkgs_json then
@@ -97,7 +97,7 @@ function(suite, radxa_mirror, radxa_repo_suffix, product, temp_dir, install_vsco
9797
},
9898
]
9999
else
100-
[];
100+
[],
101101

102102
mmdebstrap+: {
103103
packages+: [

0 commit comments

Comments
 (0)