Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Fix check for BSQ_BLOCKS_FILE inside bsq-explorer script #20

Merged
merged 3 commits into from Jan 5, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bsq-explorer
Expand Up @@ -16,7 +16,7 @@ BSQ_BLOCKS_FILE="${BISQ_JSON_DIR}/all/blocks.json"
while true
do
if [ ! -e "${BSQ_BLOCKS_FILE}" ];then
echo "BSQ blocks file ${BSQ_BLOCKS_FILE} does not exist!"
echo "Waiting for BSQ blocks file ${BSQ_BLOCKS_FILE} to be created!"
inotifywait -qq -r -e modify,move,create,delete "${BSQ_BLOCKS_FILE}"
continue
fi
Expand Down