Skip to content

Commit

Permalink
Added prints
Browse files Browse the repository at this point in the history
Signed-off-by: TaikiYamada4 <[email protected]>
  • Loading branch information
TaikiYamada4 committed Dec 19, 2024
1 parent 4b08fe6 commit d4f0fd4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ def create_files(
test_template = os.path.join(template_directory, "test_validator_template.cpp")
docs_template = os.path.join(template_directory, "validator_template.md")
cpp_new = os.path.join(src_directory, f"{code_name}.cpp")
print("Create " + cpp_new)
hpp_new = os.path.join(include_directory, f"{code_name}.hpp")
print("Create " + hpp_new)
test_new = os.path.join(test_directory, f"test_{code_name}.cpp")
print("Create " + test_new)
docs_new = os.path.join(docs_directory, f"{code_name}.md")
print("Create " + docs_new)

# Copy template files
shutil.copy(cpp_template, cpp_new)
Expand Down

0 comments on commit d4f0fd4

Please sign in to comment.