Skip to content

Commit

Permalink
Merge pull request #80 from usefulness/mateuszkwiecinski-patch-1
Browse files Browse the repository at this point in the history
Fix `debug` flag being always enabled
  • Loading branch information
mateuszkwiecinski authored Mar 10, 2024
2 parents 45442de + f4b4dfe commit c8513e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def find_tool_coordinates():


def is_debug():
return os.getenv("INPUT_DEBUG", False)
return os.getenv("INPUT_DEBUG", "false").casefold() == "true".casefold()


def is_windows():
Expand Down

0 comments on commit c8513e4

Please sign in to comment.