diff --git a/Ronin.command b/Ronin.command new file mode 100755 index 0000000..28d6dbc --- /dev/null +++ b/Ronin.command @@ -0,0 +1,7 @@ +#!/bin/bash +cd `dirname "$BASH_SOURCE"` +{ + sleep 1 + open http://localhost:8022 +}& +python -m SimpleHTTPServer 8022 diff --git a/scripts/modules/help.js b/scripts/modules/help.js index 31cf789..a7d83b0 100644 --- a/scripts/modules/help.js +++ b/scripts/modules/help.js @@ -38,7 +38,7 @@ function Help(rune) } html += "\n"; html += "- Variables: "; - for (var key in ronin.modules[key].variables){ + for(var key in ronin.modules[key].variables){ html += "`"+key+"` "; } html += "\n\n";