Comment clarification
This commit is contained in:
parent
1f18ca97fe
commit
0e71949bc1
|
@ -22,7 +22,7 @@ async fn main() -> Result<()> {
|
|||
// Create the api instances
|
||||
let adoptium = AdoptiumAPI::adoptium().context("Creating api")?;
|
||||
let semeru = AdoptiumAPI::semeru().context("Creating api")?;
|
||||
// Fill in x86_64 first
|
||||
// Fill in x86_64-linux first
|
||||
{
|
||||
let x86_64 = output.entry("x86_64-linux".to_string()).or_default();
|
||||
x86_64.insert(
|
||||
|
@ -40,7 +40,7 @@ async fn main() -> Result<()> {
|
|||
.context("Failed getting x86_64 adopt releases")?,
|
||||
);
|
||||
}
|
||||
// Then aarch64
|
||||
// Then aarch64-linux
|
||||
{
|
||||
let aarch64 = output.entry("aarch64-linux".to_string()).or_default();
|
||||
aarch64.insert(
|
||||
|
|
Loading…
Reference in New Issue