You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/tests/download_emulators.sh

25 lines
574 B

#!/usr/bin/env bash
set -e
SITE="https://data.trezor.io/dev/firmware/releases/emulators/"
cd "$(dirname "$0")"
# download all emulators without index files, without directories and only if not present
wget -e robots=off \
--no-verbose \
--no-clobber \
--no-parent \
--no-directories \
--no-host-directories \
--recursive \
--reject "index.html*" \
--reject "-arm" \
-P emulators/ \
$SITE
chmod u+x emulators/trezor-emu-*
cd ..
# are we in Nix(OS)?
command -v nix-shell >/dev/null && nix-shell --run "autoPatchelf tests/emulators"