mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 12:08:59 +00:00
14 lines
260 B
Bash
Executable File
14 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# script/setup: Set up application for the first time after cloning, or set it
|
|
# back to the initial first unused state.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/bootstrap
|
|
|
|
git clean -fdX
|
|
git submodule foreach git clean -fdX
|