Skip to content

Commit

Permalink
oops, typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ericphanson committed Sep 18, 2023
1 parent 0fc7c11 commit e21ecbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GitHubActions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function get_gha_level()
# `tryparse(Bool, "1")` does not work on Julia 1.0, so we special-case that value
# (which is the only documented value for `RUNNER_DEBUG`, so any other case should be
# due to the user setting it manually somehow).
env_str == "1" && return DEBUG
env_str == "1" && return Debug
# Fallback for all other values:
is_debug = something(tryparse(Bool, env_str), false)
return is_debug ? Debug : Info
Expand Down

0 comments on commit e21ecbc

Please sign in to comment.