Homebrew / actions

🚀 Homebrew's GitHub Actions
BSD 2-Clause "Simplified" License
122 stars 39 forks source link

Fix usage for `bump-{formulae,packages}` #530

Closed sorairolake closed 6 months ago

sorairolake commented 6 months ago

| preserves newlines, so the current usage tries to run FORMULA-2 as a command.

Expected expand results:

brew bump --open-pr --formulae FORMULA-1 FORMULA-2 FORMULA-3

Actual results:

brew bump --open-pr --formulae FORMULA-1
FORMULA-2
FORMULA-3

This actual result is probably unexpected. So, I fix it to use > to fold newlines.

MikeMcQuaid commented 6 months ago

Thanks so much for your first contribution! Without people like you submitting PRs we couldn't run this project. You rock, @sorairolake!