Skip to content

Commit

Permalink
rm CR and LF from the cargo-msrv run
Browse files Browse the repository at this point in the history
  • Loading branch information
yshavit committed Feb 28, 2025
1 parent 615c68b commit 29b547d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
id: run-msrv
run: |
set -euo pipefail
min_version="$(docker run --rm -t -v "$PWD/":/app/ foresterre/cargo-msrv find --no-log --output-format minimal)"
min_version="$(docker run --rm -t -v "$PWD/":/app/ foresterre/cargo-msrv find --no-log --output-format minimal | tr -d $'\r\n')"
echo "Found version in cargo-msrv: <$min_version>"
echo "result=$min_version" >> "$GITHUB_OUTPUT"
- name: compare versions
Expand Down

0 comments on commit 29b547d

Please sign in to comment.