Skip to content

Commit 70d0e37

Browse files
author
Stefan Plantikow
committed
Merge pull request #7 from neo4j/fix-m01-download
Recognize alpha-version if it is provided directly
2 parents 2e202d4 + 764d968 commit 70d0e37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neoget.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EDITION="community"
2121
MODE=""
2222
CHECK_EXISTS=0
2323
ALL_VERSIONS="2.3.0-M02 2.2.2 2.1.8 2.0.4"
24-
ALPHA_VERSION="3.0.0-M01"
24+
ALPHA_VERSION="3.0.0-M01-NIGHTLY"
2525

2626
function usage {
2727
SCRIPT=$(basename $0)
@@ -83,7 +83,7 @@ function download {
8383
fi
8484
if [ $DOWNLOAD -eq 1 ]
8585
then
86-
if [[ "$ALL_VERSIONS" == "$ALPHA_VERSION" ]]
86+
if [[ "$VERSIONS" == "$ALPHA_VERSION" ]]
8787
then
8888
URL="${ALPHA}/${ARCHIVE}"
8989
else

0 commit comments

Comments
 (0)