Fixes #52: Error file separator regex in Windows environment
- This bug can cause init failure of `AppNameUtil` Signed-off-by: Eric Zhao <sczyh16@gmail.com>
This commit is contained in:
parent
430ef8a99a
commit
227776a301
|
|
@ -74,8 +74,14 @@ public final class AppNameUtil {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
command = command.split("\\s")[0];
|
command = command.split("\\s")[0];
|
||||||
if (command.contains(File.separator)) {
|
String separator = File.separator;
|
||||||
String[] strs = command.split(File.separator);
|
if (command.contains(separator)) {
|
||||||
|
String[] strs;
|
||||||
|
if ("\\".equals(separator)) {
|
||||||
|
strs = command.split("\\\\");
|
||||||
|
} else {
|
||||||
|
strs = command.split(separator);
|
||||||
|
}
|
||||||
command = strs[strs.length - 1];
|
command = strs[strs.length - 1];
|
||||||
}
|
}
|
||||||
if (command.endsWith(JAR_SUFFIX_LOWER) || command.endsWith(JAR_SUFFIX_UPPER)) {
|
if (command.endsWith(JAR_SUFFIX_LOWER) || command.endsWith(JAR_SUFFIX_UPPER)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue