From 66c2c53784db365ad4fe2c3d8920e05465c617cf Mon Sep 17 00:00:00 2001 From: joeuhren Date: Tue, 1 Oct 2019 19:41:58 -0600 Subject: [PATCH] prevent discarding of output data while indexing --- scripts/index.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/index.sh b/scripts/index.sh index 1abdb1d..3da8371 100755 --- a/scripts/index.sh +++ b/scripts/index.sh @@ -10,7 +10,7 @@ then fi fi if [ -z "${1}" ]; then - eval "cd ${EXPLORER_PATH} && $(which node) scripts/sync.js index update > /dev/null 2>&1" + eval "cd ${EXPLORER_PATH} && $(which node) scripts/sync.js index update" else - eval "cd ${EXPLORER_PATH} && ${1} scripts/sync.js index update > /dev/null 2>&1" + eval "cd ${EXPLORER_PATH} && ${1} scripts/sync.js index update" fi \ No newline at end of file