From f00dfea84dba3214c39ebc07e3425c52b8fad712 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sat, 10 Nov 2018 20:26:11 -0700 Subject: [PATCH] Log that it can take a while! --- misc/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/misc/install.sh b/misc/install.sh index b471124e..aa2b3d9b 100755 --- a/misc/install.sh +++ b/misc/install.sh @@ -101,7 +101,9 @@ extra_npm_install_args() { } install_node_packages() { - log "Installing required Node packages" + log "Installing required Node packages..." + log "Note that on some systems such as RPi, this can take a VERY long time. Be patient!" + cd ${ENIGMA_INSTALL_DIR} local EXTRA_NPM_ARGS=$(extra_npm_install_args) git checkout ${ENIGMA_BRANCH} && npm install ${EXTRA_NPM_ARGS}