Skip to content

Commit

Permalink
fix script export
Browse files Browse the repository at this point in the history
  • Loading branch information
extremeCrazyCoder committed Dec 12, 2019
1 parent 8ccb076 commit df0f146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static boolean writeAttackScript(List<Attack> pAttacks,
String tmpl = "";
try {
logger.debug(" - reading template");
BufferedReader r = new BufferedReader(new InputStreamReader(new FileInputStream("./scripts/show.tmpl")));
BufferedReader r = new BufferedReader(new InputStreamReader(new FileInputStream("./templates/scriptShow.tmpl")));
String line = "";
while ((line = r.readLine()) != null) {
tmpl += line + "\n";
Expand Down
2 changes: 1 addition & 1 deletion src/main/assemble/distribution.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<directory>resources/Scripts</directory>
<outputDirectory></outputDirectory>
<includes>
<include>show.tmpl</include>
<include>BuildStartScript.sh</include>
<include>DSWorkbench*</include>
<include>Launcher.bat</include>
<include>hidecmd.vbs</include>
Expand Down

0 comments on commit df0f146

Please sign in to comment.