Guichaguri / DiscordDJ

Discord DJ Bot. Play music in your server. Inspired by PlugDJ
http://guichaguri.github.io/DiscordDJ/
GNU Lesser General Public License v2.1
199 stars 50 forks source link

bash script issues. #17

Closed Dazzuh closed 8 years ago

Dazzuh commented 8 years ago

Hey, the issue with the bot not Initializing has come up a few times in the past, and it's still doing the same thing for me, tested this on both linux and windows. Just read your post on #15 and works after editing discordie.

second issue, none of the two bash scripts seem to work.

./setup-bot.sh:

setup-bot.sh:

 line 2: $'\r': command not found
setup-bot.sh: line 3: syntax error near unexpected token `$'{\r''
'etup-bot.sh: line 3: `function end {

./start-bot.sh

module.js:328
    throw err;
    ^

'rror: Cannot find module '/home/dazzuh/discorddj/runtime/DiscordDJ.js
    at Function.Module._resolveFilename (module.js:326:15)
    at Function.Module._load (module.js:277:25)
    at Function.Module.runMain (module.js:442:10)
    at startup (node.js:136:18)
    at node.js:966:3
Press [Enter] to close...
Guichaguri commented 8 years ago

The start-bot does not works because the bot was not installed correctly, I'll look into the setup-bot

Dazzuh commented 8 years ago

The bot starts fine if I run node DiscordDJ.js manually from the runtime folder, just not through the start script.

Guichaguri commented 8 years ago

It looks like the line endings were in CRLF (Windows) instead of LF (Unix). I discovered Git replaces LF to CRLF in text files, so I had to disable that. Try v0.0.3 to see if it works now

Dazzuh commented 8 years ago

Works perfectly now, thanks!