Skip to content

Commit 66c3e70

Browse files
fix: use printf
1 parent cefdf6c commit 66c3e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ runs:
152152
if [[ -f README.md ]]; then
153153
if ! [[ $(head -1 README.md | sed -n -E '/^# /p') ]]; then
154154
####echo "# $(cat README.md)" > README.md
155-
echo "# ${{ inputs.site_title }}\n\n$(cat README.md)" > README.md
155+
printf "# ${{ inputs.site_title }}\n\n$(cat README.md)" > README.md
156156
fi
157157
fi
158158
if [[ -f LICENSE.md ]]; then

0 commit comments

Comments
 (0)