Skip to content

Commit

Permalink
fix(cocogitto): buggy command on pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Oct 8, 2023
1 parent 41fc72e commit e2d8a7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/extras/me-cocogitto.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ restores it after that."
(insert (format "############ Cocogitto bump (%s) ############\n" level))
(call-process-shell-command "git stash -u" nil (current-buffer))
(call-process-shell-command
(format "cog bump --%s%s" level (if pre (format "--pre %s" pre) ""))
(format "cog bump --%s%s" level (if pre (format " --pre %s" pre) ""))
nil (current-buffer))
(call-process-shell-command "git stash pop" nil (current-buffer))))

Expand Down

0 comments on commit e2d8a7a

Please sign in to comment.