s/but/bug
 
-Peter
-----Original Message-----
From: Peter Vogel [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 07, 2001 5:07 PM
To: '[EMAIL PROTECTED]'
Subject: RE: <tarfileset> problem: help

I suspect you are running into the <tarfileset> but that I sent a patch for a while back, it
is fixed in the CVS version of ant.
 
-Peter
-----Original Message-----
From: Suu Quan [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 07, 2001 3:30 PM
To: ANT user group
Subject: <tarfileset> problem: help

Copying almost exactly as the manual
 
<property name="rootdir" value="c:/stp" />
<property name="disttar" value="${rootdir}/stpdist.tar" />
 
<target name="tar">
  <tar tarfile="${disttar}" basedir="${rootdir}"
        includes="etc/**, lib/**" >
        <tarfileset dir="${rootdir}/sbin" mode="555" />
  </tar>
 
Running that target I got the following error
tar.xml:9: Problem creating TAR: C:\stp\README (The system cannot find the file specified)
--- Nested Exception ---
java.io.FileNotFoundException: C:\stp\README (The system cannot find the file specified)
        at java.io.FileInputStream.open(Native Method)
    .....
 
Theere is no \stp\README, but there is one in .../sbin/README.
If I don't use the <tarfileset> element, I never get an error.
 
What's missing?
 
tia
 

Reply via email to