Skip to content

Commit

Permalink
Use correct github url to find commands.json
Browse files Browse the repository at this point in the history
Once this is merged:
  - merge the latest changes to commands.json in antirez/redis-doc
  - re-run: utils/generate-command-help.rb > src/help.h

Then we'll have nice and easy tab-completed help in redis-cli again.

Closes #1909
  • Loading branch information
badboy authored and antirez committed Aug 25, 2014
1 parent 5afe1e3 commit ef57f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/generate-command-help.rb
Expand Up @@ -50,7 +50,7 @@ def commands
require "json"
require "uri"

url = URI.parse "https://raw.github.com/antirez/redis-doc/master/commands.json"
url = URI.parse "https://raw.githubusercontent.com/antirez/redis-doc/master/commands.json"
client = Net::HTTP.new url.host, url.port
client.use_ssl = true
response = client.get url.path
Expand Down

0 comments on commit ef57f94

Please sign in to comment.