mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
CHECK_MIGRATIONS="_assets/scripts/migration_check.sh"
|
||
|
CHECK_COMMITS="_assets/scripts/commit_check.sh"
|
||
|
|
||
|
"${CHECK_MIGRATIONS}" "$@"
|
||
|
"${CHECK_COMMITS}" "$@"
|