Skip to content

Commit

Permalink
Pass ShellCheck; provision Neo4J Server 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jan 17, 2018
1 parent e50886b commit d590220
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions bin/ci/start_neo4j_server.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/bin/sh

VERSION="3.0.3"
TARBALL="neo4j3.0.tar.gz"
VERSION="3.3.1"
TARBALL="neo4j-server-$VERSION.tar.gz"

cd /tmp
cd /tmp || exit
wget -O $TARBALL "http://dist.neo4j.org/neo4j-community-$VERSION-unix.tar.gz?edition=community&version=$VERSION&distribution=tarball&dlid=2803678"
tar zxf $TARBALL

cd "neo4j-community-$VERSION"
cd "neo4j-community-$VERSION" || exit

./bin/neo4j start
sleep 5
2 changes: 1 addition & 1 deletion bin/ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

lein run -m clojurewerkz.neocons.rest.passwords http://localhost:7474/ neo4j neo4j qwerty

if ["$TRAVIS_SECURE_ENV_VARS" = "true"]; then
if test "$TRAVIS_SECURE_ENV_VARS" = 'true'; then
NEO4J_LOGIN=neo4j NEO4J_PASSWORD=qwerty lein test :travis
else
NEO4J_LOGIN=neo4j NEO4J_PASSWORD=qwerty lein test :default
Expand Down

0 comments on commit d590220

Please sign in to comment.