From 5555698cae493f8b7b1784108b29129f50ded650 Mon Sep 17 00:00:00 2001
From: Benjamin Gilbert <bgilbert@backtick.net>
Date: Mon, 22 Jul 2013 03:52:24 -0400
Subject: [PATCH] Don't publish release binaries into site-build repo

We're going to be hosting them in GitHub Releases instead.
---
 Gruntfile.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Gruntfile.js b/Gruntfile.js
index 9e34ccd5..a2fa8070 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -191,6 +191,10 @@ module.exports = function(grunt) {
     // Copies the contents of the build folder into the release folder.
     grunt.registerTask("copy:release", function() {
         grunt.file.recurse("build", function(abspath, rootdir, subdir, filename) {
+            if (subdir === 'releases') {
+                return;
+            }
+
             var dest = releaseRoot
                 + (subdir ? subdir + "/" : '/')
                 + filename;