From 258b8366e202e50a064ba42915e1514247bd6dc2 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Sun, 5 Sep 2021 19:31:06 -0400 Subject: [PATCH] installDeps.sh: Ensure that `ep_etherpad-lite` is a directory --- src/bin/installDeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/installDeps.sh b/src/bin/installDeps.sh index 3fe82a346..a3e593f31 100755 --- a/src/bin/installDeps.sh +++ b/src/bin/installDeps.sh @@ -40,7 +40,7 @@ log "Installing dependencies..." ( mkdir -p node_modules cd node_modules - [ -e ep_etherpad-lite ] || ln -s ../src ep_etherpad-lite + [ -d ep_etherpad-lite ] || ln -sf ../src ep_etherpad-lite cd ep_etherpad-lite npm ci --no-optional ) || {