Skip to content

Commit d3a5b96

Browse files
committed
Unify message for missing initial Neo4j password
1 parent 682ae9e commit d3a5b96

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

scripts/executeJupyterNotebook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SKIP_JUPYTER_NOTEBOOK_PDF_GENERATION=${SKIP_JUPYTER_NOTEBOOK_PDF_GENERATION:-""}
2323

2424
# Check if environment variable is set
2525
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then
26-
echo "executeJupyterNotebook: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your password'."
26+
echo "executeJupyterNotebook: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your-own-password>'."
2727
exit 1
2828
fi
2929

scripts/executeQuery.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/neo4j/tx/
1919

2020
# Check if environment variable is set
2121
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then
22-
echo "Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your password'."
22+
echo "Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your-own-password>'."
2323
exit 1
2424
fi
2525

scripts/prepareAnalysis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo "prepareAnalysis: SCRIPTS_DIR=${SCRIPTS_DIR}"
1111

1212
# Check if environment variable is set
1313
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then
14-
echo "prepareAnalysis: Error: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your password>'."
14+
echo "prepareAnalysis: Error: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your-own-password>'."
1515
exit 1
1616
fi
1717

scripts/resetAndScan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ JQASSISTANT_BIN="${JQASSISTANT_DIRECTORY}/bin"
3232

3333
# Check if environment variable is set
3434
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then
35-
echo "resetAndScan: Error: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your password'."
35+
echo "resetAndScan: Error: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your-own-password>'."
3636
exit 1
3737
fi
3838

scripts/setupNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fi
5656

5757
# Check if environment variable is set
5858
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then
59-
echo "setupNeo4j: Error: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your password'."
59+
echo "setupNeo4j: Error: Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your-own-password>'."
6060
exit 1
6161
fi
6262

scripts/setupNeo4jInitialPassword.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ NEO4J_INSTALLATION_DIRECTORY="${TOOLS_DIRECTORY}/${NEO4J_INSTALLATION_NAME}"
1414

1515
# Check if environment variable is set
1616
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then
17-
echo "Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your password'."
17+
echo "Requires environment variable NEO4J_INITIAL_PASSWORD to be set first. Use 'export NEO4J_INITIAL_PASSWORD=<your-own-password>'."
1818
exit 1
1919
fi
2020

0 commit comments

Comments
 (0)