From: Paul Brossier Date: Fri, 22 Jul 2016 20:46:53 +0000 (+0200) Subject: wscript: also exclude .landscape.yml X-Git-Tag: 0.4.4~272 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=5e544f1aee36f0a1a7244bb4efe99e2ed604a8ee;p=aubio.git wscript: also exclude .landscape.yml --- diff --git a/wscript b/wscript index 3a0bda79..c665ff5b 100644 --- a/wscript +++ b/wscript @@ -387,7 +387,8 @@ def dist(ctx): ctx.excl += ' **/python/*/*.old' ctx.excl += ' **/python/tests/sounds' ctx.excl += ' **/**.asc' + ctx.excl += ' **/dist*' ctx.excl += ' **/.DS_Store' ctx.excl += ' **/.travis.yml' - ctx.excl += ' **/dist*' - ctx.excl += ' **/appveyor.yml' + ctx.excl += ' **/.landscape.yml' + ctx.excl += ' **/.appveyor.yml'