installDeps.sh: Ensure that ep_etherpad-lite is a directory

This commit is contained in:
Richard Hansen 2021-09-05 19:31:06 -04:00
parent cf7cf8be69
commit 258b8366e2

View file

@ -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
) || {