Drop . prefix from files in .config directory for devtools

Closes gh-18006
This commit is contained in:
Madhura Bhave
2019-09-20 14:58:18 -07:00
parent d092df43b7
commit 48960c54d1
3 changed files with 14 additions and 14 deletions

View File

@@ -47,8 +47,8 @@ public class DevToolsHomePropertiesPostProcessor implements EnvironmentPostProce
private static final String LEGACY_FILE_NAME = ".spring-boot-devtools.properties";
private static final String[] FILE_NAMES = new String[] { ".spring-boot-devtools.yml", ".spring-boot-devtools.yaml",
".spring-boot-devtools.properties" };
private static final String[] FILE_NAMES = new String[] { "spring-boot-devtools.yml", "spring-boot-devtools.yaml",
"spring-boot-devtools.properties" };
private static final String CONFIG_PATH = "/.config/spring-boot/";