Skip to content

Commit e4ca179

Browse files
committed
use double quotes in echo messages
1 parent 7c1be64 commit e4ca179

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,12 @@ jobs:
140140
declared_msrv="${{ needs.vars.outputs.msrv }}"
141141
142142
if [ "$computed_msrv" != "$declared_msrv" ]; then
143-
echo "The MSRV computed by 'cargo msrv' ('$computed_msrv') does not match the version declared in Cargo.toml ('$declared_msrv')."
144-
echo "Please update the 'rust-version' in Cargo.toml to '$computed_msrv'."
143+
echo "The MSRV computed by cargo msrv (\"$computed_msrv\") does not match the version declared in Cargo.toml (\"$declared_msrv\")."
144+
echo "Please update the \"rust-version\" in Cargo.toml to \"$computed_msrv\"."
145145
exit 1
146146
else
147147
echo "MSRV consistency check passed."
148-
echo "Computed MSRV '$computed_msrv' matches declared MSRV '$declared_msrv'."
148+
echo "Computed MSRV \"$computed_msrv\" matches declared MSRV \"$declared_msrv\"."
149149
fi
150150
wasm:
151151
needs: vars

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "imageproc"
33
version = "0.26.0"
44
authors = ["theotherphil"]
5-
rust-version = "1.85.0"
5+
rust-version = "1.83.0"
66
edition = "2021"
77
license = "MIT"
88
description = "Image processing operations"

0 commit comments

Comments
 (0)