mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-10 06:57:24 +00:00
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Forcibly remove any stray UNIX sockets left behind from previous runs
|
|
rm -rf /var/run/privval.sock /var/run/app.sock
|
|
|
|
/usr/bin/app /tendermint/config/app.toml &
|
|
|
|
sleep 1
|
|
|
|
/usr/bin/maverick "$@"
|