diff options
| -rw-r--r-- | Readme.md | 2 | ||||
| -rwxr-xr-x | run.sh | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -18,7 +18,7 @@ Copy config.sh.sample to config.sh and edit it to match your environment. ## Usage If you have your config.sh in place you can just run -`config.sh && run.sh` +`./run.sh` and your bot should be up and serving your needs. Happy Geldschieben! @@ -1,5 +1,8 @@ #!/bin/bash +# Source config.sh if it is available +[[ -f config.sh ]] && source config.sh + # Create dir for all your received messages mkdir msgs |
