mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 02:31:05 +00:00
14 lines
526 B
Bash
Executable File
14 lines
526 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
SITE="https://firmware.corp.sldev.cz/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 --cut-dirs=2 --no-host-directories --recursive --reject "index.html*" -P emulators/ $SITE
|
|
|
|
chmod u+x emulators/trezor-emu-*
|
|
|
|
# are we in Nix(OS)?
|
|
command -v nix-shell >/dev/null && nix-shell -p autoPatchelfHook SDL2 SDL2_image --run "autoPatchelf emulators/trezor-emu-*"
|