Skip to content

Commit f1cd211

Browse files
committed
Fix printf error with CHANGES variable
Replace printf with echo for CHANGES variable since it contains lines starting with dashes that printf interprets as invalid options.
1 parent 53f5326 commit f1cd211

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ jobs:
143143
printf '(dtk-select-server "swiftmac")\n'
144144
printf '```\n\n'
145145
printf "### Changes\n\n"
146-
printf "%s\n\n" "$CHANGES"
147-
printf "%s\n\n" "---"
146+
echo "$CHANGES"
147+
printf "\n\n---\n\n"
148148
printf "For more information, see the [full documentation](https://github.com/robertmeta/swiftmac).\n"
149149
} > RELEASE_NOTES.md
150150

Sources/SwiftMacPackage/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import OggDecoder
1616
#else
1717
let debugLogger = Logger() // No-Op
1818
#endif
19-
let version = "4.3.4"
19+
let version = "4.3.5"
2020
let name = "swiftmac"
2121
var ss = StateStore() // just create new one to reset
2222

0 commit comments

Comments
 (0)