Skip to content

Commit

Permalink
Fix installation of static java files
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Günther <[email protected]>
  • Loading branch information
tom-hg57 authored and m-mirz committed Dec 26, 2024
1 parent 0b155b9 commit abdc8e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
include cimgen/languages/cpp/templates/*.mustache
include cimgen/languages/java/templates/*.mustache
include cimgen/languages/java/*.java
include cimgen/languages/java/**/*.java
include cimgen/languages/javascript/templates/*.mustache
include cimgen/languages/modernpython/templates/*.mustache
include cimgen/languages/python/templates/*.mustache
1 change: 0 additions & 1 deletion cimgen/languages/java/lang_pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def run_template(output_path, class_details):


def _write_templated_file(class_file, class_details, template_filename):
class_file.parent.mkdir(parents=True, exist_ok=True)
with class_file.open("w", encoding="utf-8") as file:
templates = files("cimgen.languages.java.templates")
with templates.joinpath(template_filename).open(encoding="utf-8") as f:
Expand Down

0 comments on commit abdc8e4

Please sign in to comment.