mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
11 lines
178 B
Plaintext
11 lines
178 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# script/bootstrap: Resolve all dependencies that the application requires to
|
||
|
# run.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
git submodule update --init
|