Skip to content

Commit

Permalink
Allow the git commit to fail (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Jul 27, 2020
1 parent 4a54277 commit 5b4278b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manager/post_processing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function publish(; prerender::Bool=true, minify::Bool=true, nopass::Bool=false,
print(pubmsg)
try
run(`git add -A `)
run(`git commit -m "$message" --quiet`)
wait(run(`git commit -m "$message" --quiet`; wait=false))
if do_push
run(`git push --quiet`)
end
Expand Down

0 comments on commit 5b4278b

Please sign in to comment.