Skip to content

Commit 66e8695

Browse files
committed
coderabbit
1 parent d22fbe6 commit 66e8695

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/scripts/generate-workspace-changelog.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"
140140
done
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

0 commit comments

Comments
 (0)