You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/08/21 16:58:40 UTC

git commit: [#6580] Make SVN quieter when building snapshots

Updated Branches:
  refs/heads/cj/6580 [created] ff6bbf724


[#6580] Make SVN quieter when building snapshots

Signed-off-by: Cory Johns <cj...@slashdotmedia.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/ff6bbf72
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/ff6bbf72
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/ff6bbf72

Branch: refs/heads/cj/6580
Commit: ff6bbf72494015baf3c130b8cd7d6d8c9d16904b
Parents: 6ce8edf
Author: Cory Johns <cj...@slashdotmedia.com>
Authored: Wed Aug 21 14:58:31 2013 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Wed Aug 21 14:58:31 2013 +0000

----------------------------------------------------------------------
 Allura/allura/model/repository.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/ff6bbf72/Allura/allura/model/repository.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/repository.py b/Allura/allura/model/repository.py
index 9db3747..3fe5a80 100644
--- a/Allura/allura/model/repository.py
+++ b/Allura/allura/model/repository.py
@@ -740,7 +740,7 @@ def zipdir(source, zipfile, exclude=None):
     # this is needed to get proper prefixes inside zip-file
     working_dir = os.path.dirname(source)
     source_fn = os.path.basename(source)
-    command = [zipbin, '-r', zipfile, source_fn]
+    command = [zipbin, '-y', '-q', '-r', zipfile, source_fn]
     if exclude:
         command += ['-x', exclude]
     p = Popen(command, cwd=working_dir, stdout=PIPE, stderr=PIPE)