Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0002431: Fix service install issue on linux.
  • Loading branch information
gwilmer committed Oct 30, 2015
1 parent 8235c5d commit e374481
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -64,7 +64,7 @@ public void install() {
FileWriter writer = new FileWriter(runFile);
System.out.println("name looking for ==>" + config.getName());
BufferedReader reader = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream(
"/" + config.getName() + ".initd")));
"/" + config.getName().toLowerCase() + ".initd")));
String line = null;
while ((line = reader.readLine()) != null) {
line = line.replaceAll("\\$\\{wrapper.name}", config.getName());
Expand Down

0 comments on commit e374481

Please sign in to comment.