mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-06 15:29:44 +01:00
8 lines
107 B
Bash
8 lines
107 B
Bash
#!/bin/bash
|
|
|
|
script_dir=$(dirname "$(realpath "$0")")
|
|
|
|
if ! bash "$script_dir/eslint.sh"; then
|
|
exit 1
|
|
fi
|