Skip to content

Commit d873725

Browse files
committed
fix: use sed instead of gsed
1 parent 1bd3317 commit d873725

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/increment-cargo-version.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ for Cargo_toml in "${Cargo_tomls[@]}"; do
122122
# Set new crate version
123123
(
124124
set -x
125-
gsed -i "$Cargo_toml" -e "0,/^version =/{s/^version = \"[^\"]*\"$/version = \"$newVersion\"/}"
125+
sed -i "$Cargo_toml" -e "0,/^version =/{s/^version = \"[^\"]*\"$/version = \"$newVersion\"/}"
126126
)
127127

128128
# Fix up the version references to other internal crates
129129
for crate in "${crates[@]}"; do
130130
(
131131
set -x
132-
gsed -i "$Cargo_toml" -e "
132+
sed -i "$Cargo_toml" -e "
133133
s/^$crate = { *path *= *\"\([^\"]*\)\" *, *version *= *\"[^\"]*\"\(.*\)} *\$/$crate = \{ path = \"\1\", version = \"=$newVersion\"\2\}/
134134
"
135135
)

0 commit comments

Comments
 (0)