Skip to content

Commit

Permalink
try only replace newline
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed Jul 10, 2024
1 parent e283e0a commit e814089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/upstream-tracker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
# updates to anza-xyz/agave wiki (contains feature gate updates + release schedules)
git clone https://github.com/anza-xyz/agave.wiki.git
cd agave.wiki
printf -v WIKI "%q" $(git diff $(git log --since="7 days ago" --pretty=format:"%h" | tail -1)^..HEAD)
WIKI=$(git diff $(git log --since="7 days ago" --pretty=format:"%h" | tail -1)^..HEAD)
WIKI=${WIKI//$'\n'/\\n}
echo "open<<EOF" >> $GITHUB_OUTPUT
echo "$OPEN" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit e814089

Please sign in to comment.