From 5dd36949bbfd5a474d0b5dbbc463568cb812e78e Mon Sep 17 00:00:00 2001 From: Jack Kenefick Date: Fri, 31 Aug 2018 16:58:29 +0100 Subject: [PATCH] Update boot.adoc .../bin/standalone.sh didn't work for me when running on a bash terminal on a mac. This should work for everyone. --- getting_started/topics/first-boot/boot.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/getting_started/topics/first-boot/boot.adoc b/getting_started/topics/first-boot/boot.adoc index 3f8d7f1524..778acf6cec 100644 --- a/getting_started/topics/first-boot/boot.adoc +++ b/getting_started/topics/first-boot/boot.adoc @@ -6,7 +6,8 @@ To boot the {project_name} server, go to the `bin` directory of the server distr .Linux/Unix [source,bash,subs=+attributes] ---- -$ .../bin/standalone.sh +$ cd bin +$ ./standalone.sh ---- .Windows