Skip to content

Commit 50e2040

Browse files
committed
trying to fix license not found error
1 parent c465c10 commit 50e2040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/update_license_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def main():
3838
updated_license_text = date_pattern.sub(date_replacement, updated_license_text)
3939

4040
# Write the updated LICENSE file
41-
with open("codeflash/LICENSE", "w", encoding="utf8") as file:
41+
with open(os.path.join(os.path.dirname(__file__), "LICENSE"), encoding="utf8") as file:
4242
file.write(updated_license_text)
4343

4444

0 commit comments

Comments
 (0)