This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ ! -f bin/neo4j-admin ]; then echo "Please change to the Neo4j Installation directory!!"; exit 1; fi | |
echo "Have your password and Neo4j Aura Cloud Database Bolt URL ready!" | |
echo "This will override your cloud database with an empty one!!!" | |
echo "If you don't want that press <ctrl-c>, otherwise <enter>" | |
echo | |
read | |
if [ ! -f plugins/neo4j-push-to-cloud-3.jar ]; then | |
echo "Downloading push-to-cloud jar" |