Skip to content

Commit

Permalink
RTF now includes Java files
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen committed Oct 28, 2023
1 parent 0f80dbf commit 3760b0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto-rtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import argparse

# Constants
VERSION = "1.1.0"
VERSION = "1.1.1"
BUG_URL = "https://github.com/Stephen-Hamilton-C/auto-rtf/issues/new?assignees=Stephen-Hamilton-C&labels=&projects=&template=bug_report.md"
SCRIPT_PATH = __file__
SCRIPT_NAME = os.path.basename(SCRIPT_PATH)
Expand Down Expand Up @@ -76,7 +76,7 @@ def getDefaultOutputFile():

for root, dirs, files in os.walk(MAIN_PATH):
for file in files:
if file.endswith(".kt"):
if file.endswith(".kt") or file.endswith(".java"):
filePath = os.path.join(root, file)
ktFiles.append(filePath)
elif file.endswith(".xml"):
Expand Down

0 comments on commit 3760b0b

Please sign in to comment.