From 25b87f353aeb5c147a4ac11e296995d92d6ca07e Mon Sep 17 00:00:00 2001 From: MaybeGoogle <30007491+MaybeGoogle@users.noreply.github.com> Date: Tue, 21 Nov 2017 23:41:56 -0600 Subject: [PATCH 1/2] Too many people forgetting it Comma in credentials --- docs/guides/From Source.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/From Source.md b/docs/guides/From Source.md index 5e16619d..016669ab 100644 --- a/docs/guides/From Source.md +++ b/docs/guides/From Source.md @@ -22,8 +22,9 @@ If you're running from source on windows, you will have to setup your credential "ShardRunCommand": "dotnet", "ShardRunArguments": "run -c Release -- {0} {1}" ``` +DON'T FORGET TO ADD A `,` WHEN INSTERTING THESE 2 LINES [.netcore]: https://www.microsoft.com/net/download/core#/sdk [ffmpeg]: http://ffmpeg.zeranoe.com/builds/ [git]: https://git-scm.com/downloads -[redis]: https://github.com/MicrosoftArchive/redis/releases/latest \ No newline at end of file +[redis]: https://github.com/MicrosoftArchive/redis/releases/latest From 0a842325183954fce41fc8dd3a6c5ca1eb3858b0 Mon Sep 17 00:00:00 2001 From: MaybeGoogle <30007491+MaybeGoogle@users.noreply.github.com> Date: Wed, 22 Nov 2017 14:10:20 -0600 Subject: [PATCH 2/2] Better way of putting it thanks to @coconut24 --- docs/guides/From Source.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/guides/From Source.md b/docs/guides/From Source.md index 016669ab..84182f1b 100644 --- a/docs/guides/From Source.md +++ b/docs/guides/From Source.md @@ -17,12 +17,11 @@ Edit `credentials.json.` Read the JSON Exaplanations guide on the left if you do `dotnet run -c Release` ### !!! NOTE FOR WINDOWS USERS !!! -If you're running from source on windows, you will have to setup your credentials to have these 2 extra lines: +If you're running from source on windows, you will have to add these 2 extra lines to your credentials, after the first open bracket: ```js "ShardRunCommand": "dotnet", - "ShardRunArguments": "run -c Release -- {0} {1}" + "ShardRunArguments": "run -c Release -- {0} {1}", ``` -DON'T FORGET TO ADD A `,` WHEN INSTERTING THESE 2 LINES [.netcore]: https://www.microsoft.com/net/download/core#/sdk [ffmpeg]: http://ffmpeg.zeranoe.com/builds/