The only place I found that uses this ant task (other than in facepirate) is in the yohoho root

build file, and this change shouldn't cause any problems there from what I can tell.  This is needed
for the hyena build in facepirate, but if it breaks things I'll revert and figure out another way
to do it.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@856 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Nathan Curtis
2009-10-02 07:45:18 +00:00
parent 63bbe83a00
commit f8f9aaf47d
@@ -57,7 +57,7 @@ public class ResourceIndexerTask extends Task
{
PrintWriter fout = null;
try {
fout = new PrintWriter(new FileWriter(_indexFile));
fout = new PrintWriter(new FileWriter(getProject().getBaseDir() + "/" + _indexFile));
for (FileSet fs : _filesets) {
DirectoryScanner ds = fs.getDirectoryScanner(getProject());