1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/tests/download_emulators.sh
Tomas Susanka 24f803e9c0 Revert "tests: do not check internal firmware.corp certificate"
This reverts commit 7364883c04.

Fixed by adminkos.
2020-06-27 14:50:14 +00:00

16 lines
554 B
Bash
Executable File

#!/usr/bin/env bash
set -e
SITE="https://firmware.corp.sldev.cz/upgrade_tests/"
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 --cut-dirs=2 --no-host-directories --recursive --reject "index.html*" -P emulators/ $SITE
chmod u+x emulators/trezor-emu-*
if [ -f /etc/NIXOS ]; then
# for this to work you need to run ./download_emulators.sh outside the main nix shell
cd emulators && nix-shell --run "autoPatchelf trezor-emu*"
fi