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:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user