It seems that although cytoscape-editor can be correctly deployed to any branch, when pushed to main it yields the following error:
#!/bin/bash -eo pipefail
APPS_MODIFIED=$(ls apps | sort -u)
if [ -z "$APPS_MODIFIED" ]
then
echo "No app change detected. Skipping the deploy.."
exit 0
fi
for APP in $APPS_MODIFIED
do
PATH="$HOME/bin:$PATH" ./deploy "$APP"
done
====> Deploying cytoscape-editor
dashr: false
exists: true
! Unable to clone repository
Exited with code exit status 1
CircleCI received exit code 1
It seems that although cytoscape-editor can be correctly deployed to any branch, when pushed to
mainit yields the following error: