From 2ac2bf4c2a6f23488a4b9ab7995368c3d7b741c4 Mon Sep 17 00:00:00 2001 From: Carl Hultay <144816337+crhultay@users.noreply.github.com> Date: Wed, 20 Nov 2024 19:45:18 -0500 Subject: [PATCH] Update install.sh Manual Installation per https://nuskooler.github.io/enigma-bbs/installation/manual.html asks the user to use v18 whereas this script was defaulting to 14. This caused me some frustration in getting my BBS up and running as I at first depended on the auto-install script. For the less apt user, this might be a blocker to adopting this BBS Software. --- misc/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/install.sh b/misc/install.sh index 82ddfb698..1945e5bd7 100755 --- a/misc/install.sh +++ b/misc/install.sh @@ -2,7 +2,7 @@ { # this ensures the entire script is downloaded before execution -ENIGMA_NODE_VERSION=${ENIGMA_NODE_VERSION:=14} +ENIGMA_NODE_VERSION=${ENIGMA_NODE_VERSION:=18} ENIGMA_BRANCH=${ENIGMA_BRANCH:=master} ENIGMA_INSTALL_DIR=${ENIGMA_INSTALL_DIR:=$HOME/enigma-bbs} ENIGMA_SOURCE=${ENIGMA_SOURCE:=https://github.com/NuSkooler/enigma-bbs.git}