diff options
| author | cyan <cyjan@mrcyjanek.net> | 2024-12-02 11:54:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-02 11:54:58 -0500 |
| commit | 8f52aebdd89471d2eaf5dd4cdc3c8278c4bfd70e (patch) | |
| tree | 3e9e0b5b765fc8605c56afb8b688f14db3f9fd4b /tests/utils.ts | |
| parent | fffd22288aa9384add744a04251f68ec65124980 (diff) | |
| parent | 40c1a1bda4b6f125c702f5a37ecc48a6ebec24b8 (diff) | |
Merge branch 'master' into cyjan-cleanup-patches
Diffstat (limited to 'tests/utils.ts')
| -rwxr-xr-x | tests/utils.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/utils.ts b/tests/utils.ts index 028e0ff..cd05232 100755 --- a/tests/utils.ts +++ b/tests/utils.ts @@ -14,9 +14,9 @@ export async function downloadMoneroCli() { const MONERO_CLI_FILE_NAME = "monero-linux-x64-v0.18.3.4"; const MONERO_WALLET_CLI_URL = `https://downloads.getmonero.org/cli/${MONERO_CLI_FILE_NAME}.tar.bz2`; - await $`wget ${MONERO_WALLET_CLI_URL}`; + await $`wget -q -o /dev/null ${MONERO_WALLET_CLI_URL}`; await $ - .raw`tar -xvf ${MONERO_CLI_FILE_NAME}.tar.bz2 --one-top-level=monero-cli --strip-components=1 -C tests`; + .raw`tar -xf ${MONERO_CLI_FILE_NAME}.tar.bz2 --one-top-level=monero-cli --strip-components=1 -C tests`; await $.raw`rm ${MONERO_CLI_FILE_NAME}.tar.bz2`; } @@ -25,9 +25,9 @@ export async function downloadWowneroCli() { const WOWNERO_WALLET_CLI_URL = `https://codeberg.org/wownero/wownero/releases/download/v0.11.2.0/wownero-x86_64-linux-gnu-59db3fe8d.tar.bz2`; - await $`wget ${WOWNERO_WALLET_CLI_URL}`; + await $`wget -q -o /dev/null ${WOWNERO_WALLET_CLI_URL}`; await $ - .raw`tar -xvf ${WOWNERO_CLI_FILE_NAME}.tar.bz2 --one-top-level=wownero-cli --strip-components=1 -C tests`; + .raw`tar -xf ${WOWNERO_CLI_FILE_NAME}.tar.bz2 --one-top-level=wownero-cli --strip-components=1 -C tests`; await $.raw`rm ${WOWNERO_CLI_FILE_NAME}.tar.bz2`; } |
