Skip to content

Commit

Permalink
Fix post_status for when autodetection returns nothing.
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Nov 21, 2019
1 parent 40da03e commit 4ff84b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deployconfig.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This method must be supported by configs that push with HTTPS, see
"""
function authenticated_repo_url end

post_status(cfg::DeployConfig; kwargs...) = nothing
post_status(cfg::Union{DeployConfig,Nothing}; kwargs...) = nothing
post_status(; kwargs...) = post_status(auto_detect_deploy_system(); kwargs...)

marker(x) = x ? "" : ""
Expand Down

0 comments on commit 4ff84b0

Please sign in to comment.