[zorg] r190272 - [llvmlab] Make sure to exclude .svn files when we tar up a root.
Michael Gottesman
mgottesman at apple.com
Sat Sep 7 23:35:59 PDT 2013
Author: mgottesman
Date: Sun Sep 8 01:35:59 2013
New Revision: 190272
URL: http://llvm.org/viewvc/llvm-project?rev=190272&view=rev
Log:
[llvmlab] Make sure to exclude .svn files when we tar up a root.
Modified:
zorg/trunk/zorg/buildbot/util/artifacts.py
Modified: zorg/trunk/zorg/buildbot/util/artifacts.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/util/artifacts.py?rev=190272&r1=190271&r2=190272&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/util/artifacts.py (original)
+++ zorg/trunk/zorg/buildbot/util/artifacts.py Sun Sep 8 01:35:59 2013
@@ -143,7 +143,7 @@ def uploadArtifacts(f, rootdir='clang-in
workdir=WithProperties('%(builddir)s')))
f.addStep(buildbot.steps.shell.ShellCommand(
name='tar.and.zip', haltOnFailure=True,
- command=['tar', 'czvf', archive_path, './'],
+ command=['tar', '-czv', '--exclude', '.svn', '-f', archive_path, './'],
description=['tar', '&', 'zip'], workdir=rootdir))
# Upload the archive.
archive_dest = WithProperties(base_rsync_path +'/%(getpath)s/',
More information about the llvm-commits
mailing list