Skip to content

Commit ccc6a8b

Browse files
committed
Fix some script/dev tasks not printing to stdout correctly
1 parent 100934c commit ccc6a8b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: bump-version
1+
name: Bump Version
22

33
on:
44
push:

script/dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
(defun cmd:release-notes (&optional version)
5555
"Print VERSION's release notes, defaulting to 'Unreleased'."
56-
(message "%s" (-release-notes version)))
56+
(princ (-release-notes version)))
5757

5858
(defun cmd:bump-version (&optional next)
5959
"Increase the patch version. This does not create a git tag."
@@ -88,7 +88,7 @@
8888

8989
(defun cmd:current-version ()
9090
"Print the current version."
91-
(message "%s" (-current-version)))
91+
(princ (-current-version)))
9292

9393
(defun -main (&rest args)
9494
(when-let* ((cmd (car args))

0 commit comments

Comments
 (0)