Fixed configuration file extension with .conf.
This commit is contained in:
parent
4934648583
commit
e0636f4dea
2 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ public class Builder
|
||||||
target.add(input);
|
target.add(input);
|
||||||
|
|
||||||
// Save the build properties.
|
// Save the build properties.
|
||||||
File targetFile = new File(buildDirectory, configurationFile.getName());
|
File targetFile = new File(buildDirectory, configuration.getBuildInput().getName());
|
||||||
PathPropertyUtils.save(targetFile, target);
|
PathPropertyUtils.save(targetFile, target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@ public final class StatoolInfosCLI
|
||||||
{
|
{
|
||||||
for (File file : input.listFiles())
|
for (File file : input.listFiles())
|
||||||
{
|
{
|
||||||
if ((file.isFile()) && (file.getName().endsWith(".properties")))
|
if ((file.isFile()) && (file.getName().endsWith(".conf")))
|
||||||
{
|
{
|
||||||
result.add(file);
|
result.add(file);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue