mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-29 23:33:37 +00:00
7 lines
171 B
Bash
7 lines
171 B
Bash
|
#!/bin/sh
|
||
|
if test -f /6000-privnet-blocks.acc.gz; then
|
||
|
gunzip /6000-privnet-blocks.acc.gz
|
||
|
/usr/bin/neo-go db restore -i /6000-privnet-blocks.acc
|
||
|
fi
|
||
|
/usr/bin/neo-go "$@"
|