Skip to content

Commit

Permalink
Fixed the default port in the install script.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhluongo committed Aug 22, 2012
1 parent 5cf7f7a commit 17490d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_local_neo4j.bash
Expand Up @@ -6,7 +6,7 @@ DIR="neo4j-community-$VERSION"
FILE="$DIR-unix.tar.gz"
SERVER_PROPERTIES_FILE="lib/neo4j/conf/neo4j-server.properties"
#set a default neo4j port if none has been set
: {NEO4J_PORT:="7474"}
NEO4J_PORT=${NEO4J_PORT:="7474"}

if [[ ! -d lib/$DIR ]]; then
wget http://dist.neo4j.org/$FILE
Expand Down

0 comments on commit 17490d7

Please sign in to comment.