Skip to content

Commit

Permalink
replaced wget for curl since curl shouldn't complain about the certif…
Browse files Browse the repository at this point in the history
…icate

as seen in issue haskell/cabal#1796
  • Loading branch information
philippkueng committed Jul 22, 2014
1 parent 52f179c commit f035c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_local_neo4j.bash
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [[ ! -d lib/$DIR ]]; then
PLUGIN_VERSION="1.5"
fi
DELETE_DB_PLUGIN_JAR="test-delete-db-extension-$PLUGIN_VERSION.jar"
wget -O lib/neo4j/testing/$DELETE_DB_PLUGIN_JAR https://github.com/downloads/jexp/neo4j-clean-remote-db-addon/$DELETE_DB_PLUGIN_JAR
curl -L -o lib/neo4j/testing/$DELETE_DB_PLUGIN_JAR https://github.com/downloads/jexp/neo4j-clean-remote-db-addon/$DELETE_DB_PLUGIN_JAR
ln -s ../testing/$DELETE_DB_PLUGIN_JAR lib/neo4j/plugins/$DELETE_DB_PLUGIN_JAR
cat >> $SERVER_PROPERTIES_FILE <<EOF
org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.server.extension.test.delete=/cleandb
Expand Down

0 comments on commit f035c05

Please sign in to comment.