From 2fb438b199abf8463587fe5202f7bc55f60fc7ef Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 16 Jun 2025 13:43:11 -0600 Subject: [PATCH] Add curl as a dependency. --- run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run.sh b/run.sh index 4de0cfe..a20e666 100755 --- a/run.sh +++ b/run.sh @@ -69,6 +69,10 @@ if [[ ! `which npm` ]]; then echo "- Installing NPM" $sudo apt-get install -y npm fi +if [[ ! `which curl` ]]; then + echo "- Installing NPM" + $sudo apt-get install -y curl +fi # Directories and allowed page types are executable, others are not. log "Fix any strange file permissions."