mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 21:22:10 +00:00
10 lines
373 B
Bash
10 lines
373 B
Bash
|
#!/bin/bash
|
||
|
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 --no-verbose --no-clobber --no-parent --cut-dirs=2 --no-host-directories --recursive --reject "index.html*" -P emulators/ $SITE
|
||
|
|
||
|
# TODO: is this a good idea?
|
||
|
chmod u+x emulators/trezor-emu-*
|