Fix fetch releases after move to gitbox
diff --git a/gulpfile.js b/gulpfile.js
index cb4c3da..eeba04c 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -321,7 +321,7 @@
   function getRepoTags(repoName) {
     var dfd = Q.defer();
     // Get the tags for the repo
-    var gitCommand = 'git ls-remote --tags "git://git.apache.org/' + repoName + '.git"';
+    var gitCommand = 'git ls-remote --tags "http://gitbox.apache.org/repos/asf/' + repoName + '.git"';
     exec(gitCommand, function(err, stdout, stderr) {
       // Abort if tags not found or something bad happened with the git ls-remote command
       if (err || stderr) {