Skip to content

Commit

Permalink
fix case insensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
checkymander committed Jan 23, 2025
1 parent 02e7896 commit d450abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Payload_Type/athena/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def process_csproj_files(directory, placeholder):

for csproj_file in csproj_files:
print(csproj_file)
if csproj_file.lower().endswith("AthenaCore.csproj"):
if csproj_file.endswith("AthenaCore.csproj"):
replace_placeholder_in_file(csproj_file, placeholder, agent_replacement_text)
else:
replace_placeholder_in_file(csproj_file, placeholder, replacement_text)
Expand Down

0 comments on commit d450abe

Please sign in to comment.