Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMacocian committed Aug 10, 2024
2 parents 3ab9849 + 7338918 commit 2cb956e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GuildWarsPartySearch.Bot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
1. Copy config.example.sh to config.sh, and edit it to add your Guild Wars credentials
2. `docker build -t partysearchbot_alpine .`
3. *Windows:* `docker run -d --restart always --name partysearchbot -v "%cd%":/app partysearchbot_alpine ./run.sh`
3. *Linux:* `docker run -d --restart always --name partysearchbot -v "$pwd":/app partysearchbot_alpine ./run.sh`
3. *Linux:* `docker run -d --restart always --name partysearchbot -v "$PWD":/app partysearchbot_alpine ./run.sh`

## If the source code for the bot has been changed

Expand All @@ -22,4 +22,4 @@ Segmentation fault in docker usually means the bot failed; running manually by s
4. `./run.sh` - this should fail with a useless segmentation fault message. Copy the command shown in the output.
5. `gdb --args <your_copied_text>` - this should open a gdb prompt for the next steps.
6. `run` - this should end up printing out `Program received signal SIGSEGV, Segmentation fault.`
6. `bt` to view the call stack, explaining the error so you can actually do something about it!
6. `bt` to view the call stack, explaining the error so you can actually do something about it!

0 comments on commit 2cb956e

Please sign in to comment.