Return-Path: Delivered-To: apmail-jakarta-ant-user-archive@jakarta.apache.org Received: (qmail 51726 invoked by uid 500); 11 Jun 2001 15:52:09 -0000 Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: ant-user@jakarta.apache.org Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 51717 invoked from network); 11 Jun 2001 15:52:08 -0000 Message-Id: <6BCBBDF4762DD311815000902762CD4905DB2AC5@gsny15e.ny.fw.gs.com> From: "Varnavas, Frank" To: "'ant-user@jakarta.apache.org'" Subject: RE: problems Date: Mon, 11 Jun 2001 11:52:04 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N I think the basedir= attribute in the entity is creating another fileset -----Original Message----- From: Mike Schiraldi [mailto:raldi@research.netsol.com] Sent: Monday, June 11, 2001 10:00 AM To: ant-user@jakarta.apache.org Subject: problems I'm having some problems with . Let's say i have the following files: $ find . . ./build.xml ./bin ./bin/script.sh ./etc ./etc/foo ./bad ./bad/do_not_include_this I'd like everything in bin to be added with mode 755, everything in etc to be added as-is, and nothing from bad/ included. Here's my build.xml. As far as i can tell, i'm following the instructions in the ant docs. However, ant just tars up everything. $ cat build.xml $ ant dist Buildfile: build.xml dist: [tar] Building tar: /tmp/test.tar BUILD SUCCESSFUL Total time: 2 seconds $ tar -tf test.tar bin/script.sh etc/foo build.xml bin/script.sh etc/foo bad/do_not_include_this