Skip to content

Commit

Permalink
fix: use printf
Browse files Browse the repository at this point in the history
  • Loading branch information
sator-imaging authored Jul 20, 2024
1 parent cefdf6c commit 66c3e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ runs:
if [[ -f README.md ]]; then
if ! [[ $(head -1 README.md | sed -n -E '/^# /p') ]]; then
####echo "# $(cat README.md)" > README.md
echo "# ${{ inputs.site_title }}\n\n$(cat README.md)" > README.md
printf "# ${{ inputs.site_title }}\n\n$(cat README.md)" > README.md
fi
fi
if [[ -f LICENSE.md ]]; then
Expand Down

0 comments on commit 66c3e70

Please sign in to comment.