mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-25 08:37:10 +01:00
8 lines
150 B
Bash
Executable File
8 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
echo "replacing imports in $1"
|
|
|
|
find "$1" -type f -exec sed -i "s/import(\"packages/import(\"@trezor/g" {} +
|