Skip to content

Commit

Permalink
fix: make commit messages in testdata multi-line (#1473)
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-urbanski-freiheit-com authored Mar 26, 2024
1 parent 1065df2 commit 6198f9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion infrastructure/scripts/create-testdata/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ msgs[10]="Allow deleting locks on locks page"
sizeMsgs=${#msgs[@]}
index=$(($RANDOM % $sizeMsgs))
echo $index
echo "${msgs[$index]}" > "${commit_message_file}"
echo -e "${msgs[$index]}\n" > "${commit_message_file}"
echo "1: ${msgs[$index]}" >> "${commit_message_file}"
echo "2: ${msgs[$index]}" >> "${commit_message_file}"

ls "${commit_message_file}"

Expand Down

0 comments on commit 6198f9c

Please sign in to comment.