summaryrefslogtreecommitdiff
path: root/tests/download_deps.ts
diff options
context:
space:
mode:
authorIm-Beast <franik.mateusz@gmail.com>2024-12-19 13:15:11 +0100
committerIm-Beast <franik.mateusz@gmail.com>2024-12-19 13:15:11 +0100
commit7d8db85942194fc7576d58beb7a4dc65e415a56b (patch)
tree7f53a2ccd1de179b99b0b3bf43ee282405c80f03 /tests/download_deps.ts
parent56f10a0d91374ea2a2739f875dbe9fb2d695a0eb (diff)
tests: use cached releases endpoint to prevent ratelimits
Diffstat (limited to 'tests/download_deps.ts')
-rw-r--r--tests/download_deps.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/download_deps.ts b/tests/download_deps.ts
index 097a551..808640e 100644
--- a/tests/download_deps.ts
+++ b/tests/download_deps.ts
@@ -224,6 +224,12 @@ if (import.meta.main) {
];
for (const target of supportedTargets) {
- await downloadFiles("./download_mirror", target, moneroCliInfo, wowneroCliInfo, ...Object.values(dylibInfos).flat());
+ await downloadFiles(
+ "./download_mirror",
+ target,
+ moneroCliInfo,
+ wowneroCliInfo,
+ ...Object.values(dylibInfos).flat(),
+ );
}
}