File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ git log --no-merges --format="%H" $COMMIT_RANGE -- rust/main | while read -r com
136136 workspace_file=$( echo " $workspace " | tr ' /' ' _' )
137137
138138 # Store commit in workspace category file (just message, PR# already in message)
139- echo " $workspace | $ commit_msg" >> " $TEMP_DIR /$workspace_file "
139+ echo " $commit_msg " >> " $TEMP_DIR /$workspace_file "
140140done
141141
142142# Function to generate changelog for a specific workspace
@@ -150,7 +150,7 @@ generate_workspace_changelog() {
150150 echo " ### $workspace "
151151 echo " "
152152 fi
153- sort -u " $TEMP_DIR /$workspace_file " | while IFS= ' | ' read -r ws msg; do
153+ sort -u " $TEMP_DIR /$workspace_file " | while read -r msg; do
154154 echo " * $msg "
155155 done
156156 fi
You can’t perform that action at this time.
0 commit comments