From 3d247dfcf8ec792866163868e29436a0ddbdc750 Mon Sep 17 00:00:00 2001 From: Redned Date: Fri, 14 Feb 2020 16:34:07 -0600 Subject: [PATCH] Updated Creating a Startup Script (markdown) --- Creating-a-Startup-Script.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Creating-a-Startup-Script.md b/Creating-a-Startup-Script.md index 7060d5c..415631a 100644 --- a/Creating-a-Startup-Script.md +++ b/Creating-a-Startup-Script.md @@ -14,7 +14,8 @@ java -Xms512M -jar Geyser.jar * Create a text file called **run.command**, and open it with a text editor such as TextEdit or TextMate. Type the text below into the **run.command** file: ```sh #!/bin/bash -cd "$( dirname "$0" )" java -Xms512M -jar Geyser.jar +cd "$( dirname "$0" )" +java -Xms512M -jar Geyser.jar ``` * Open Terminal, and type in `chmod a+x` **(Do NOT press return!)**, and drag your *run.command* file into the Terminal. * Press return on your keyboard, and Geyser will start up. Geyser will generate all the needed files.