summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Erik Rediger <badboy@archlinux.us>2014-08-05 09:12:40 +0200
committerantirez <antirez@gmail.com>2014-08-25 10:15:28 +0200
commitef57f94df0c07ccdd61e537283f45f977840f8ad (patch)
tree0d4601f9a15a1e4dac64edcb89e0b7fa3f401b77
parent5afe1e37c7f04224831d6e0e34579e4ce496d006 (diff)
downloadredis-ef57f94df0c07ccdd61e537283f45f977840f8ad.tar.gz
Use correct github url to find commands.json
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
-rwxr-xr-xutils/generate-command-help.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/generate-command-help.rb b/utils/generate-command-help.rb
index 47fbc645c..068953198 100755
--- a/utils/generate-command-help.rb
+++ b/utils/generate-command-help.rb
@@ -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