From 52183bae49eee7878d2f2c4d83547252b4512ffd Mon Sep 17 00:00:00 2001 From: Oddant1 Date: Fri, 13 Sep 2024 14:45:22 -0700 Subject: [PATCH] - instead of / --- src/lib/scripts/GetRepoInfo.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/scripts/GetRepoInfo.js b/src/lib/scripts/GetRepoInfo.js index 49769bd..55054fd 100644 --- a/src/lib/scripts/GetRepoInfo.js +++ b/src/lib/scripts/GetRepoInfo.js @@ -191,7 +191,7 @@ for (const repo of repos) { const distro = split[split.length - 2]; const epoch = split[split.length - 1]; - const release = `${distro}/${epoch}`; + const release = `${distro}-${epoch}`; distros.add(distro); epochs.add(epoch); @@ -253,8 +253,8 @@ function sortEpochs(a, b) { } function sortReleases(a, b) { - const A = a.split("/"); - const B = b.split("/"); + const A = a.split("-"); + const B = b.split("-"); const distroA = A[0]; const epochA = A[1];