Fixed configuration file extension with .conf.

This commit is contained in:
Christian P. MOMON 2020-10-18 00:14:39 +02:00
parent 4934648583
commit e0636f4dea
2 changed files with 2 additions and 2 deletions

View file

@ -100,7 +100,7 @@ public class Builder
target.add(input);
// Save the build properties.
File targetFile = new File(buildDirectory, configurationFile.getName());
File targetFile = new File(buildDirectory, configuration.getBuildInput().getName());
PathPropertyUtils.save(targetFile, target);
}
}

View file

@ -73,7 +73,7 @@ public final class StatoolInfosCLI
{
for (File file : input.listFiles())
{
if ((file.isFile()) && (file.getName().endsWith(".properties")))
if ((file.isFile()) && (file.getName().endsWith(".conf")))
{
result.add(file);
}