Merge pull request #1089 from nspcc-dev/fix/docker-startup

docker: fix shell condition check in entrypoint script
This commit is contained in:
Roman Khimov 2020-06-23 16:42:39 +03:00 committed by GitHub
commit 2cddeadd9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
BIN=/usr/bin/neo-go
if [ -z "$ACC"]; then
if [ -z "$ACC" ]; then
ACC=/6000-privnet-blocks.acc.gz
fi